We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ab4430 commit 4bb9a39Copy full SHA for 4bb9a39
3 files changed
‎exercises/practice/killer-sudoku-helper/.docs/instructions.md‎
@@ -76,8 +76,8 @@ You can also find Killer Sudokus in varying difficulty in numerous newspapers, a
76
77
The screenshots above have been generated using F-Puzzles.com, a Puzzle Setting Tool by Eric Fox.
78
79
-[sudoku-rules]: https://masteringsudoku.com/sudoku-rules-beginners/
80
-[killer-guide]: https://masteringsudoku.com/killer-sudoku/
+[sudoku-rules]: https://en.wikipedia.org/wiki/Sudoku
+[killer-guide]: https://en.wikipedia.org/wiki/Killer_sudoku
81
[one-solution-img]: https://assets.exercism.org/images/exercises/killer-sudoku-helper/example1.png
82
[four-solutions-img]: https://assets.exercism.org/images/exercises/killer-sudoku-helper/example2.png
83
[not-possible-img]: https://assets.exercism.org/images/exercises/killer-sudoku-helper/example3.png
‎exercises/practice/prism/.docs/instructions.md‎
@@ -10,9 +10,9 @@ Consider this crystal array configuration:
10
{
11
"start": { "x": 0, "y": 0, "angle": 0 },
12
"prisms": [
13
- { "id": 3, "x": 30, "y": 10, "angle": 45 },
14
{ "id": 1, "x": 10, "y": 10, "angle": -90 },
15
{ "id": 2, "x": 10, "y": 0, "angle": 90 },
+ { "id": 3, "x": 30, "y": 10, "angle": 45 },
16
{ "id": 4, "x": 20, "y": 0, "angle": 0 }
17
]
18
}
@@ -34,3 +34,5 @@ The beam was traveling at 90°, so after refraction it's now at 0° (90° + (-90
34
**Step 3**: From position `(10, 10)`, the beam travels horizontally and encounters **Crystal #3** at position `(30, 10)`.
35
This crystal refracts the beam by 45°, changing its direction to 45°.
36
The beam continues into empty space beyond the array.
37
+
38
+
‎exercises/practice/prism/.meta/config.json‎
@@ -13,7 +13,7 @@
".meta/example.lua"
},
- "blurb": "Calculate the path of a laser through reflective prisms.",
+ "blurb": "Calculate the path of a laser through refractive prisms.",
"source": "FraSanga",
"source_url": "https://github.com/exercism/problem-specifications/pull/2625"
19
0 commit comments