problem
solution
option 1 - dp
1 | class Solution { |
option 2 - reduce dp
1 | class Solution { |
1 | int uniquePaths(int m, int n){ |
option 3 use math
1 | class Solution { |
analysis
- option 1
- time complexity
O(n*m)
- space complexity
O(n*m)
- time complexity
- option 2
- time complexity
O(n*m)
- space complexity
O(n)
- time complexity
- option 2
- time complexity
O(n)
- space complexity
O(1)
- time complexity