public class uniquePaths62 { public int uniquePaths(int m, int n) { int[][] dp=new int[m][n]; for(int i=0;i