java刷题--62 不同路径

Posted Anrys

tags:

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

java刷题--62 不同路径

题目

动态规划开始了 我很激动!!
在这里插入图片描述

代码

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

结果

在这里插入图片描述

以上是关于java刷题--62 不同路径的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题Python62. 不同路径

java刷题--63不同路径II

leetcode刷题(123)——63. 不同路径 II

LeetCode 62. 不同路径c++/java详细题解

刷题62. Unique Paths

LeetCode刷题模版:61 - 70