Pangram checker: Difference between revisions

Content added Content deleted
(→‎{{header|Commodore BASIC}}: Add implementation.)
Line 258: Line 258:
=={{header|APL}}==
=={{header|APL}}==
<syntaxhighlight lang="apl">
<syntaxhighlight lang="apl">
a←'abcdefghijklmnopqrstuvwxyz'
a←'abcdefghijklmnopqrstuvwxyz' ⍝ or ⎕ucs 96 + ⍳26 in GNU/Dyalog
A←'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
A←'ABCDEFGHIJKLMNOPQRSTUVWXYZ' ⍝ or ⎕ucs 64 + ⍳26, or just ⎕a in Dyalog


Panagram←{∧/ ∨⌿ 2 26⍴(a,A) ∊ ⍵}
Panagram←{∧/ ∨⌿ 2 26⍴(a,A) ∊ ⍵}