Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.02 KB

0063.unique-paths-ii.md

File metadata and controls

53 lines (35 loc) · 1.02 KB

0063.Unique-Paths-II

Description

Given two binary strings, return their sum (also a binary string).

The input strings are both non-empty and contains only characters 1 or 0.

An obstacle and empty space is marked as 1 and 0 respectively in the grid.

Note: m and n will be at most 100.

Example 1:

Input:
[
  [0,0,0],
  [0,1,0],
  [0,0,0]
]
Output: 2
Explanation:
There is one obstacle in the middle of the 3x3 grid above.
There are two ways to reach the bottom-right corner:
1. Right -> Right -> Down -> Down
2. Down -> Down -> Right -> Right

Tags: Math, String

题意

求最短路径,但是其中有障碍

题解

思路1

利用DP 要对障碍做特殊判断 ```go

### 思路2
> 思路2
```go

结语

如果你同我一样热爱数据结构、算法、LeetCode,可以关注我 GitHub 上的 LeetCode 题解:awesome-golang-algorithm