LeetCode.62-unique-paths
Posted Jomini
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode.62-unique-paths相关的知识,希望对你有一定的参考价值。
LeetCode.62-unique-paths
思路:https://segmentfault.com/a/1190000016315625
class Solution { public int uniquePaths(int m, int n) { int[][] paths = new int[m][n]; for(int i=0;i<m;i++){ for(int j=0;j<n;j++){ if(i==0||j==0){ paths[i][j] = 1; }else{ paths[i][j] = paths[i-1][j]+paths[i][j-1] } } } return paths[m-1][n-1] } }
以上是关于LeetCode.62-unique-paths的主要内容,如果未能解决你的问题,请参考以下文章