Skip to content

Commit 66f0eb7

Browse files
🤖 Auto-sync docs, metadata, and filepaths (exercism#3036)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9739aa6 commit 66f0eb7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

‎exercises/practice/killer-sudoku-helper/.docs/instructions.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ You can also find Killer Sudokus in varying difficulty in numerous newspapers, a
7474

7575
## Credit
7676

77-
The screenshots above have been generated using [F-Puzzles.com](https://www.f-puzzles.com/), a Puzzle Setting Tool by Eric Fox.
77+
The screenshots above have been generated using F-Puzzles.com, a Puzzle Setting Tool by Eric Fox.
7878

7979
[sudoku-rules]: https://masteringsudoku.com/sudoku-rules-beginners/
8080
[killer-guide]: https://masteringsudoku.com/killer-sudoku/

‎exercises/practice/rate-limiter/.meta/config.json‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
],
1616
"editor": [
1717
"src/main/java/TimeSource.java"
18+
],
19+
"invalidator": [
20+
"build.gradle"
1821
]
1922
},
2023
"blurb": "Practice stateful logic and time handling by implementing a fixed-window rate limiter"

‎exercises/practice/triangle/.docs/instructions.md‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ A _scalene_ triangle has all sides of different lengths.
1414
For a shape to be a triangle at all, all sides have to be of length > 0, and the sum of the lengths of any two sides must be greater than or equal to the length of the third side.
1515

1616
~~~~exercism/note
17-
We opted to not include tests for degenerate triangles (triangles that violate these rules) to keep things simpler.
17+
_Degenerate triangles_ are triangles where the sum of the length of two sides is **equal** to the length of the third side, e.g. `1, 1, 2`.
18+
We opted to not include tests for degenerate triangles in this exercise.
1819
You may handle those situations if you wish to do so, or safely ignore them.
1920
~~~~
2021

0 commit comments

Comments
 (0)