From 442014a5728aa57b2f04b9f4606b42ec1600a45d Mon Sep 17 00:00:00 2001 From: Jagdish Prajapati Date: Fri, 28 Feb 2025 19:20:42 +0530 Subject: [PATCH] Fixing approach URL --- .../practice/pythagorean-triplet/.approaches/config.json | 4 ++++ .../practice/pythagorean-triplet/.approaches/introduction.md | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/exercises/practice/pythagorean-triplet/.approaches/config.json b/exercises/practice/pythagorean-triplet/.approaches/config.json index d359d60a4..826288047 100644 --- a/exercises/practice/pythagorean-triplet/.approaches/config.json +++ b/exercises/practice/pythagorean-triplet/.approaches/config.json @@ -2,6 +2,10 @@ "introduction": { "authors": [ "bobahop" + ], + "contributors": [ + "BNAndras", + "jagdish-15" ] }, "approaches": [ diff --git a/exercises/practice/pythagorean-triplet/.approaches/introduction.md b/exercises/practice/pythagorean-triplet/.approaches/introduction.md index e3a5351a2..d67297e1a 100644 --- a/exercises/practice/pythagorean-triplet/.approaches/introduction.md +++ b/exercises/practice/pythagorean-triplet/.approaches/introduction.md @@ -171,6 +171,6 @@ So if the nested `for` loops approach is fast enough, it may be preferred for re [parallel]: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html#parallel-- [flatmap]: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html#flatMap-java.util.function.IntFunction- [filter]: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html#filter-java.util.function.IntPredicate- -[approach-for-loops]: https://exercism.org/tracks/java/exercises/pythagorean-triplets/approaches/for-loops -[approach-intstream-parallel-flatmap-filter]: https://exercism.org/tracks/java/exercises/pythagorean-triplets/approaches/if-intstream-parallel-flatmap-filter +[approach-for-loops]: https://exercism.org/tracks/java/exercises/pythagorean-triplet/approaches/for-loops +[approach-intstream-parallel-flatmap-filter]: https://exercism.org/tracks/java/exercises/pythagorean-triplet/approaches/intstream-parallel-flatmap-filter [jmh]: https://github.com/openjdk/jmh