From 15d582479534bf441a40e3f867b77e1a65d07a39 Mon Sep 17 00:00:00 2001 From: Dylan Cutler <13906920+DCtheTall@users.noreply.github.com> Date: Fri, 31 Jan 2020 09:23:15 -0500 Subject: [PATCH] Change n pounds to n pence in Project Euler problem 31 (#38144) --- .../project-euler/problem-31-coin-sums.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-31-coin-sums.english.md b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-31-coin-sums.english.md index ece51a41d1..2ea37bec2e 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-31-coin-sums.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/project-euler/problem-31-coin-sums.english.md @@ -11,7 +11,7 @@ In England the currency is made up of pound, £, and pence, p, and there are eig 1p, 2p, 5p, 10p, 20p, 50p, £1 (100p) and £2 (200p). It is possible to make £2 in the following way: 1×£1 + 1×50p + 2×20p + 1×5p + 1×2p + 3×1p -How many different ways can £(n) be made using any number of coins? +How many different ways can n pence be made using any number of coins? ## Instructions