Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Notice removed Reward existing answer by user
Bounty Ended with Jo King's answer chosen by user
Notice added Reward existing answer by user
Bounty Started worth 400 reputation by user
Notice removed Reward existing answer by emanresu A
Bounty Ended with Deadcode's answer chosen by emanresu A
Notice added Reward existing answer by emanresu A
Bounty Started worth 100 reputation by emanresu A
Notice removed Reward existing answer by Adám
Bounty Ended with voidhawk's answer chosen by Adám
Notice added Reward existing answer by Adám
Bounty Started worth 100 reputation by Adám
edited tags
Link
mbomb007
  • 23.6k
  • 7
  • 66
  • 143
Post Reopened by Martin Ender
added 87 characters in body
Source Link
Arcturus
  • 7.4k
  • 1
  • 32
  • 77

Write a function or program that takes as its input a string and prints a truthy value if the string is a pangram (a sequence of letters containing at least one of each letter in the English alphabet) and a falsey value otherwise.

Case of letters should be ignored; If the string is abcdefghijklmnopqrstuvwXYZ, then the function should still return a truthy value. Note that the string can contain any other characters in it, so 123abcdefghijklm NOPQRSTUVWXYZ321 would return a truthy value. An empty input should return a falsey value.


Test cases

AbCdEfGhIjKlMnOpQrStUvWxYz

==> True


ACEGIKMOQSUWY
BDFHJLNPRTVXZ

==> True


public static void main(String[] args)

==> False


The quick brown fox jumped over the lazy dogs. BOING BOING BOING

==> True

This is code golf. Standard rules apply. Shortest code in bytes wins.

Write a function or program that takes as its input a string and prints a truthy value if the string is a pangram (a sequence of letters containing at least one of each letter in the English alphabet) and a falsey value otherwise.

Case of letters should be ignored; If the string is abcdefghijklmnopqrstuvwXYZ, then the function should still return a truthy value. Note that the string can contain any other characters in it, so 123abcdefghijklm NOPQRSTUVWXYZ321 would return a truthy value.

This is code golf. Standard rules apply. Shortest code in bytes wins.

Write a function or program that takes as its input a string and prints a truthy value if the string is a pangram (a sequence of letters containing at least one of each letter in the English alphabet) and a falsey value otherwise.

Case of letters should be ignored; If the string is abcdefghijklmnopqrstuvwXYZ, then the function should still return a truthy value. Note that the string can contain any other characters in it, so 123abcdefghijklm NOPQRSTUVWXYZ321 would return a truthy value. An empty input should return a falsey value.


Test cases

AbCdEfGhIjKlMnOpQrStUvWxYz

==> True


ACEGIKMOQSUWY
BDFHJLNPRTVXZ

==> True


public static void main(String[] args)

==> False


The quick brown fox jumped over the lazy dogs. BOING BOING BOING

==> True

This is code golf. Standard rules apply. Shortest code in bytes wins.

added 87 characters in body
Source Link
Arcturus
  • 7.4k
  • 1
  • 32
  • 77

Write a function or program that takes as its input a string and prints a truthy value if the string is a pangram (a sequence of letters containing at least one of each letter in the English alphabet) and a falsey value otherwise.

Case of letters should be ignored; If the string is abcdefghijklmnopqrstuvwXYZ, then the function should still return a truthy value. Note that the string can contain any other characters in it, so 123abcdefghijklm NOPQRSTUVWXYZ321 would return a truthy value.

This is code golf. Standard rules apply. Shortest code in bytes wins.

Write a function or program that takes as its input a string and prints a truthy value if the string is a pangram and a falsey value otherwise.

Case of letters should be ignored; If the string is abcdefghijklmnopqrstuvwXYZ, then the function should still return a truthy value. Note that the string can contain any other characters in it, so 123abcdefghijklm NOPQRSTUVWXYZ321 would return a truthy value.

This is code golf. Standard rules apply. Shortest code in bytes wins.

Write a function or program that takes as its input a string and prints a truthy value if the string is a pangram (a sequence of letters containing at least one of each letter in the English alphabet) and a falsey value otherwise.

Case of letters should be ignored; If the string is abcdefghijklmnopqrstuvwXYZ, then the function should still return a truthy value. Note that the string can contain any other characters in it, so 123abcdefghijklm NOPQRSTUVWXYZ321 would return a truthy value.

This is code golf. Standard rules apply. Shortest code in bytes wins.

Post Closed as "Needs details or clarity" by Peter Taylor, Martin Ender
edited tags
Link
Martin Ender
  • 198.2k
  • 67
  • 455
  • 998
Loading
Tweeted twitter.com/StackCodeGolf/status/674829696547319808
added 11 characters in body
Source Link
Arcturus
  • 7.4k
  • 1
  • 32
  • 77
Loading
edited body
Source Link
Arcturus
  • 7.4k
  • 1
  • 32
  • 77
Loading
Source Link
Arcturus
  • 7.4k
  • 1
  • 32
  • 77
Loading