From 1173c293616eed441678b65d58702ba7a4149c71 Mon Sep 17 00:00:00 2001 From: TheBestJohn Date: Thu, 11 Oct 2018 12:42:44 -0400 Subject: [PATCH] Add missing constraints Added missing constraint to the Pythagorean triplet problem that is outlined in the linked Project Euler problem. --- exercises/pythagorean-triplet/description.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exercises/pythagorean-triplet/description.md b/exercises/pythagorean-triplet/description.md index 3708077187..abb52750b2 100644 --- a/exercises/pythagorean-triplet/description.md +++ b/exercises/pythagorean-triplet/description.md @@ -5,6 +5,12 @@ which, a**2 + b**2 = c**2 ``` +and such that, + +```text +a < b < c +``` + For example, ```text