Skip to content

Commit eef77d9

Browse files
kytrinyxrpottsoh
authored andcommitted
Sync pangram docs with problem-specifications
The pangram exercise has been overhauled as part of a project to make practice exercises more consistent and friendly. For more context, please see the discussion in the forum, as well as the pull request that updated the exercise in the problem-specifications repository: - https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943 - exercism/problem-specifications#2215 ---- If you approve this pull request, I will eventually merge it. However, if you are happy with this change **please merge the pull request**, as it will get the changes into the hands of the students much more quickly.
1 parent 1727a32 commit eef77d9

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Instructions
22

3-
Determine if a sentence is a pangram. A pangram (Greek: παν γράμμα, pan gramma,
4-
"every letter") is a sentence using every letter of the alphabet at least once.
5-
The best known English pangram is:
6-
> The quick brown fox jumps over the lazy dog.
3+
Your task is to figure out if a sentence is a pangram.
74

8-
The alphabet used consists of ASCII letters `a` to `z`, inclusive, and is case
9-
insensitive. Input will not contain non-ASCII symbols.
5+
A pangram is a sentence using every letter of the alphabet at least once.
6+
It is case insensitive, so it doesn't matter if a letter is lower-case (e.g. `k`) or upper-case (e.g. `K`).
7+
8+
For this exercise we only use the basic letters used in the English alphabet: `a` to `z`.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Introduction
2+
3+
You work for a company that sells fonts through their website.
4+
They'd like to show a different sentence each time someone views a font on their website.
5+
To give a comprehensive sense of the font, the random sentences should use **all** the letters in the English alphabet.
6+
7+
They're running a competition to get suggestions for sentences that they can use.
8+
You're in charge of checking the submissions to see if they are valid.
9+
10+
```exercism/note
11+
Pangram comes from Greek, παν γράμμα, pan gramma, which means "every letter".
12+
13+
The best known English pangram is:
14+
15+
> The quick brown fox jumps over the lazy dog.
16+
```

0 commit comments

Comments
 (0)