Skip to content

Commit fc0e70d

Browse files
SaschaManncmcaine
andauthored
pangram: Clarify instructions (#2240)
* pangram: Clarify instructions Unfortunately #2215 introduced an ambiguity for some downstream implementations of this exercise that use non-ASCII inputs that shouldn't be considered part of the alphabet for the purpose of defining pangrams. This PR is meant to clarify that only 'a':'z' are relevant to determine if a sentence is a pangram without restricting the inputs to those characters. See also: exercism/julia#614 * Update exercises/pangram/instructions.md Co-authored-by: Colin Caine <[email protected]> * Update exercises/pangram/instructions.md Co-authored-by: Colin Caine <[email protected]> --------- Co-authored-by: Colin Caine <[email protected]>
1 parent f771129 commit fc0e70d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/pangram/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Your task is to figure out if a sentence is a pangram.
55
A pangram is a sentence using every letter of the alphabet at least once.
66
It is case insensitive, so it doesn't matter if a letter is lower-case (e.g. `k`) or upper-case (e.g. `K`).
77

8-
For this exercise we only use the basic letters used in the English alphabet: `a` to `z`.
8+
For this exercise, a sentence is a pangram if it contains each of the 26 letters in the English alphabet.

0 commit comments

Comments
 (0)