コード例 #1
0
ファイル: Program.cs プロジェクト: nadrees/ProjectEuler
        static void Main(string[] args)
        {
            var lattice = new RightDownLattice(20, 20);

            Console.WriteLine(lattice.CountPaths(20, 20));
            Console.ReadKey();
        }
コード例 #2
0
 public void SetUp()
 {
     lattice = new RightDownLattice(2, 2);
 }