ProjectEuler is renamed to project_euler

This commit is contained in:
2014-11-11 12:42:09 +04:00
parent 34df6dc854
commit a230a6c89a
872 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
/* Check cf5-opt.vim defs.
VIM: let g:lcppflags="-std=c++11 -O2 -pthread"
VIM: let g:wcppflags="/O2 /EHsc /DWIN32"
*/
#include <iostream>
/*
Lattice paths
Problem 15
Starting in the top left corner of a 2x2 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 20x20 grid?
Solution:
*/
int main ( void )
{
return 0;
}