62.Unique Paths
Posted smallredness
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了62.Unique Paths相关的知识,希望对你有一定的参考价值。
class Solution {
public:
int uniquePaths(int m, int n) {
vector<int> dp(n, 1);
for (int i = 1; i < m; ++i) {
for (int j = 1; j < n; ++j) {
dp[j] += dp[j - 1];
}
}
return dp[n - 1];
}
};
以上是关于62.Unique Paths的主要内容,如果未能解决你的问题,请参考以下文章