Skip to content

Commit 217c0f0

Browse files
authored
Remove unused .meta/description.md's (JuliaLang#509)
* Remove accumulate desc * Remove pangram desc * Remove perfect-numbers desc * Integrate pythagorean-triplet desc * Reinstate ASCII clarification in pangram desc
1 parent ae66e18 commit 217c0f0

File tree

6 files changed

+3
-80
lines changed

6 files changed

+3
-80
lines changed

exercises/practice/accumulate/.meta/description.md

-27
This file was deleted.

exercises/practice/pangram/.docs/instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ Determine if a sentence is a pangram. A pangram (Greek: παν γράμμα, pan
55
The best known English pangram is:
66
> The quick brown fox jumps over the lazy dog.
77
8-
The alphabet used consists of letters `a` to `z`, inclusive, and is case
8+
The alphabet used consists of ASCII letters `a` to `z`, inclusive, and is case
99
insensitive.

exercises/practice/pangram/.meta/description.md

-9
This file was deleted.

exercises/practice/perfect-numbers/.meta/description.md

-18
This file was deleted.

exercises/practice/pythagorean-triplet/.docs/instructions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Pythagorean triplet is a set of three natural numbers, {a, b, c}, for
44
which,
55

66
```text
7-
a**2 + b**2 = c**2
7+
a^2 + b^2 = c^2
88
```
99

1010
and such that,
@@ -16,7 +16,7 @@ a < b < c
1616
For example,
1717

1818
```text
19-
3**2 + 4**2 = 9 + 16 = 25 = 5**2.
19+
3^2 + 4^2 = 9 + 16 = 25 = 5^2.
2020
```
2121

2222
Given an input integer N, find all Pythagorean triplets for which `a + b + c = N`.

exercises/practice/pythagorean-triplet/.meta/description.md

-23
This file was deleted.

0 commit comments

Comments
 (0)