62. Unique Paths

Posted 去做点事情

tags:

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

 

class Solution {
public:
    int uniquePaths(int m, int n) {
        vector<vector<int>> result(m,vector<int>(n));
        result[0][0] = 1;
        for(int i = 0;i < m;i++){
            for(int j = 0;j < n;j++){
                if(i == 0 && j == 0)
                    continue;
                if(i != 0 && j != 0){
                    result[i][j] = result[i][j-1] + result[i-1][j];
                }
                else if(i == 0)
                    result[i][j] = result[i][j-1];
                else
                    result[i][j] = result[i-1][j];
            }
        }
        return result[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