From 5600cb34ed5cbd709bece3c482d7a317a321ae52 Mon Sep 17 00:00:00 2001 From: TheBestJohn Date: Thu, 11 Oct 2018 12:07:12 -0400 Subject: [PATCH] Update README.md Added missing constraint to the Pythagorean triplet problem that is outlined in the linked Project Euler problem. --- exercises/pythagorean-triplet/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exercises/pythagorean-triplet/README.md b/exercises/pythagorean-triplet/README.md index bcf9191a9..d52237d0e 100644 --- a/exercises/pythagorean-triplet/README.md +++ b/exercises/pythagorean-triplet/README.md @@ -7,6 +7,12 @@ which, a**2 + b**2 = c**2 ``` +and such that, + +```text +a < b < c +``` + For example, ```text