From f3ad9ff6f8453a91117d5d08cf3143e14b4d7d6f Mon Sep 17 00:00:00 2001 From: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Date: Wed, 31 Jan 2018 03:07:20 +0700 Subject: [PATCH] fix(challenges): Fix typos in some project Euler problems (#16605) --- .../project-euler-problems.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/challenges/08-coding-interview-questions-and-take-home-assignments/project-euler-problems.json b/challenges/08-coding-interview-questions-and-take-home-assignments/project-euler-problems.json index 792dadf31a..00a6545198 100644 --- a/challenges/08-coding-interview-questions-and-take-home-assignments/project-euler-problems.json +++ b/challenges/08-coding-interview-questions-and-take-home-assignments/project-euler-problems.json @@ -163,9 +163,9 @@ ], "description": [ "The sum of the squares of the first ten natural numbers is,", - "12 + 22 + ... + 102 = 385", + "1² + 2² + ... + 10² = 385", "The square of the sum of the first ten natural numbers is,", - "(1 + 2 + ... + 10)2 = 552 = 3025", + "(1 + 2 + ... + 10)² = 55² = 3025", "Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025 − 385 = 2640.", "Find the difference between the sum of the squares of the first one hundred natural numbers and the square of the sum." ] @@ -270,8 +270,8 @@ ], "description": [ "A Pythagorean triplet is a set of three natural numbers, a < b < c, for which,", - " a2 + b2 = c2", - "For example, 32 + 42 = 9 + 16 = 25 = 52.", + " a² + b² = c²", + "For example, 3² + 4² = 9 + 16 = 25 = 5².", "There exists exactly one Pythagorean triplet for which a + b + c = 1000. Find the product abc." ] },