5 lines
177 B
Text
5 lines
177 B
Text
(function pangram? sentence
|
|
(let prepped (-> sentence lower-case to-vec))
|
|
(all? prepped (map char-code (range 97 123))))
|
|
|
|
(pangram? "The five boxing wizards jump quickly.")
|