首页 > 学院 > 开发设计 > 正文

LeetCode 62. Unique Paths

2019-11-08 02:12:56
字体:
来源:转载
供稿:网友

A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).

The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below).

How many possible unique paths are there?

Above is a 3 x 7 grid. How many possible unique paths are there?

answer:

class Solution {public:    int uniquePaths(int m, int n) {        vector<vector<int>> grid(m,vector<int> (n,1));        for(int i = 1; i < m; i ++){            for(int j = 1; j < n; j ++){                grid[i][j] = grid[i - 1][j] + grid[i][j - 1];            }        }        return grid[m - 1][n - 1];    }};


上一篇:Shiro 认证

下一篇:正则表达式

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表