Skip to content

Commit d9a8119

Browse files
authored
Fix links in Pythagorean Triplet approaches (#2919)
1 parent 884488d commit d9a8119

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

exercises/practice/pythagorean-triplet/.approaches/config.json

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
"introduction": {
33
"authors": [
44
"bobahop"
5+
],
6+
"contributors": [
7+
"BNAndras",
8+
"jagdish-15"
59
]
610
},
711
"approaches": [

exercises/practice/pythagorean-triplet/.approaches/introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,6 @@ So if the nested `for` loops approach is fast enough, it may be preferred for re
171171
[parallel]: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html#parallel--
172172
[flatmap]: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html#flatMap-java.util.function.IntFunction-
173173
[filter]: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html#filter-java.util.function.IntPredicate-
174-
[approach-for-loops]: https://exercism.org/tracks/java/exercises/pythagorean-triplets/approaches/for-loops
175-
[approach-intstream-parallel-flatmap-filter]: https://exercism.org/tracks/java/exercises/pythagorean-triplets/approaches/if-intstream-parallel-flatmap-filter
174+
[approach-for-loops]: https://exercism.org/tracks/java/exercises/pythagorean-triplet/approaches/for-loops
175+
[approach-intstream-parallel-flatmap-filter]: https://exercism.org/tracks/java/exercises/pythagorean-triplet/approaches/intstream-parallel-flatmap-filter
176176
[jmh]: https://github.com/openjdk/jmh

0 commit comments

Comments
 (0)