Skip to content

Commit c86eadc

Browse files
authored
Sync pangram docs with problem-specifications (exercism#2277)
1 parent c53faaa commit c86eadc

2 files changed

Lines changed: 21 additions & 6 deletions

File tree

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)