|
Project Euler Homework
|
Starting in the top left corner in a 20 by 20 grid, how many routes are there to the bottom right corner? More...
#include <iostream>Go to the source code of this file.
Functions | |
| int | main () |
Starting in the top left corner in a 20 by 20 grid, how many routes are there to the bottom right corner?
Starting in the top left corner of a 22 grid, there are 6 routes (without backtracking) to the bottom right corner. How many routes are there through a 2020 grid?
Definition in file 015.cpp.
1.7.3