Change n pounds to n pence in Project Euler problem 31 (#38144)

This commit is contained in:
Dylan Cutler
2020-01-31 09:23:15 -05:00
committed by GitHub
parent 2f39dd07d6
commit 15d5824795

View File

@ -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?
</section>
## Instructions