62. Unique Paths

Posted 阿怪123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了62. Unique Paths相关的知识,希望对你有一定的参考价值。

动态规划问题

public class Solution {
    public int uniquePaths(int m, int n) {
        int [][] paths=new int[m][n];
        paths[0][0]=1;
        for(int i=0;i<m;i++)
        {
            for(int j=0;j<n;j++)
            {
                int res=0;
                if(i-1>=0)
                    res+=paths[i-1][j];
                if(j-1>=0)
                    res+=paths[i][j-1];
                if(i!=0||j!=0)
                    paths[i][j]=res;
            }
        }
        return paths[m-1][n-1];
    }
}

 

以上是关于62. Unique Paths的主要内容,如果未能解决你的问题,请参考以下文章

62. Unique Paths

[leetcode] 62. Unique Paths

Leetcode 62. Unique Paths

LeetCode.62-unique-paths

62. Unique Paths

62. Unique Paths