From 62a0ad66c33396abc5ed0a0fb352e01d6a2d9fd6 Mon Sep 17 00:00:00 2001 From: Jagdish Prajapati Date: Thu, 12 Jun 2025 20:33:29 +0530 Subject: [PATCH 1/2] Updating append.instructions.md to address the skipped test --- .../pythagorean-triplet/.docs/instructions.append.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/exercises/practice/pythagorean-triplet/.docs/instructions.append.md b/exercises/practice/pythagorean-triplet/.docs/instructions.append.md index 32ca5089a1..bdd0a83977 100644 --- a/exercises/practice/pythagorean-triplet/.docs/instructions.append.md +++ b/exercises/practice/pythagorean-triplet/.docs/instructions.append.md @@ -1,3 +1,10 @@ # Instructions append By default, only `sum` is given to the `triplets` function, but it may optionally also receive `minFactor` and/or `maxFactor`. When these are given, make sure _each_ factor of the triplet is at least `minFactor` and at most `maxFactor`. + + +~~~exercism/advanced +If you're solving this using the CLI, there's a test case involving large numbers that's currently skipped to avoid timeouts in our online test runner. +You can enable it if you want by removing the `.skip`, just be aware that it may take a while to run. +~~~ + From 6d30bda5fb2f3a57ed97bdfae903d22e53f2a57a Mon Sep 17 00:00:00 2001 From: Jagdish Prajapati Date: Fri, 13 Jun 2025 11:48:40 +0530 Subject: [PATCH 2/2] Update exercises/practice/pythagorean-triplet/.docs/instructions.append.md Co-authored-by: Derk-Jan Karrenbeld --- .../practice/pythagorean-triplet/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/pythagorean-triplet/.docs/instructions.append.md b/exercises/practice/pythagorean-triplet/.docs/instructions.append.md index bdd0a83977..9fc66f98fc 100644 --- a/exercises/practice/pythagorean-triplet/.docs/instructions.append.md +++ b/exercises/practice/pythagorean-triplet/.docs/instructions.append.md @@ -4,7 +4,7 @@ By default, only `sum` is given to the `triplets` function, but it may optionall ~~~exercism/advanced -If you're solving this using the CLI, there's a test case involving large numbers that's currently skipped to avoid timeouts in our online test runner. +If you're solving this using the CLI, there's a test case involving large numbers that's currently skipped to avoid timeouts in our test runner. You can enable it if you want by removing the `.skip`, just be aware that it may take a while to run. ~~~