LeetCode062:不同路径

实验平台:LeetCode
代码地址:my github

题目描述:

LeetCode062:不同路径_第1张图片

示例:

LeetCode062:不同路径_第2张图片

运行结果:

LeetCode062:不同路径_第3张图片

代码:

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

你可能感兴趣的:(LeetCode)