Update 62. Unique Paths.md

This commit is contained in:
唐树森 2019-02-18 22:55:53 +08:00 committed by GitHub
parent a2a516ebf5
commit 6d279c4b42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ public:
};
```
### 空间改进版1
```
``` C++
class Solution {
public:
int uniquePaths(int m, int n) {
@ -58,7 +58,7 @@ public:
};
```
### 空间改进版2
```
``` C++
class Solution {
public:
int uniquePaths(int m, int n) {