RosettaCodeData/Task/Pangram-checker/Smalltalk/pangram-checker-1.st
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

3 lines
136 B
Smalltalk

!String methodsFor: 'testing'!
isPangram
^((self collect: [:c | c asUppercase]) select: [:c | c >= $A and: [c <= $Z]]) asSet size = 26