Skip to content

Commit 41ab5be

Browse files
authored
exercises(pangram): sync docs (#497)
The pangram docs have 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 [1], as well as the pull request that updated the exercise in the problem-specifications repository [2]. [1] https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943 [2] exercism/problem-specifications#2215
1 parent 06572c0 commit 41ab5be

File tree

2 files changed

+20
-5
lines changed

2 files changed

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

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

7-
> The quick brown fox jumps over the lazy dog.
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`).
87

9-
The alphabet used consists of letters `a` to `z`, inclusive, and is case insensitive.
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)