RosettaCodeData/Task/Pangram-checker/APL/pangram-checker.apl
2023-07-01 13:44:08 -04:00

8 lines
307 B
APL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

a'abcdefghijklmnopqrstuvwxyz' ⍝ or ⎕ucs 96 + 26 in GNU/Dyalog
A'ABCDEFGHIJKLMNOPQRSTUVWXYZ' ⍝ or ⎕ucs 64 + 26, or just ⎕a in Dyalog
Pangram {/ 2 26(a,A) }
Pangram 'This should fail'
0
Pangram 'The quick brown fox jumps over the lazy dog'
1