Skip to content

Commit 1ee646b

Browse files
authored
improved instruction clarity (#2055)
prior instruction was not clear what it actually meant at first glace, the "+ 16 = 25 = " is extraneous information. It makes it feel like there is a missing piece beyond the actual meaning of 3^2 + 4^2 = 5^2
1 parent 5b9fa18 commit 1ee646b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/pythagorean-triplet/description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ a < b < c
1616
For example,
1717

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

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

0 commit comments

Comments
 (0)