From f17c9ecacd28d795059208c2bb2d55c90751d275 Mon Sep 17 00:00:00 2001 From: Lauchmelder23 Date: Thu, 11 Oct 2018 21:35:26 +0200 Subject: [PATCH] Added Problem 15 --- Problem_015.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Problem_015.py diff --git a/Problem_015.py b/Problem_015.py new file mode 100644 index 0000000..f21bc52 --- /dev/null +++ b/Problem_015.py @@ -0,0 +1,12 @@ +###################################################################### +# Starting in the top left corner of a 2×2 grid, and only being able to +# move to the right and down, there are exactly 6 routes to the bottom right corner. +# +# +# How many such routes are there through a 20×20 grid? +# +###################################################################### + +# Look at Pascal's triangle ;) + +# Solution: