Difference between revisions of "Pangram checker"
From Fōrmulæ wiki
m (→Program) |
(→Description (from Rosetta Code)) |
||
Line 3: | Line 3: | ||
=== Description (from Rosetta Code) === | === Description (from Rosetta Code) === | ||
− | A pangram is a sentence that contains all the letters of the English alphabet at least once. | + | {| class="wikitable" style="width:100%;" |
+ | | A pangram is a sentence that contains all the letters of the English alphabet at least once. | ||
For example: ''The quick brown fox jumps over the lazy dog''. | For example: ''The quick brown fox jumps over the lazy dog''. | ||
Line 10: | Line 11: | ||
Write a function or method to check a sentence to see if it is a [http://en.wikipedia.org/wiki/Pangram pangram] (or not) and show its use. | Write a function or method to check a sentence to see if it is a [http://en.wikipedia.org/wiki/Pangram pangram] (or not) and show its use. | ||
+ | |} | ||
=== Program === | === Program === |
Latest revision as of 17:02, 23 March 2019
This page is the answer to the task Pangram checker in the Rosetta Code.
Description (from Rosetta Code)
A pangram is a sentence that contains all the letters of the English alphabet at least once.
For example: The quick brown fox jumps over the lazy dog. Task Write a function or method to check a sentence to see if it is a pangram (or not) and show its use. |