示例#1
0
 public void Tests(int rows, int cols, int numPaths)
 {
     Assert.Equal(numPaths, Q03.CountDownRightPaths(rows, cols));
 }
示例#2
0
 public void Example()
 {
     Assert.Equal(70, Q03.CountDownRightPaths(5, 5));
 }