62. Unique Paths
2019-05-13
62. Unique Paths
- Unique PathsMedium1497104FavoriteShare
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 7 x 3 grid. How many possible unique paths are there?
Note: _m_ and _n_ will be at most 100.
Example 1:
1 | Input: m = 3, n = 2 |
Example 2:
1 | Input: m = 7, n = 3 |
Code:
1 | class Solution(object): |
1 | return math.factorial(m+n-2)/(math.factorial(n-1) * math.factorial(m-1)) |