Add solution 0488

This commit is contained in:
halfrost
2021-11-09 21:21:21 +08:00
committed by halfrost
parent d0aa4565cc
commit 04eae300bc
9 changed files with 179 additions and 26 deletions

View File

@ -1,4 +1,4 @@
# [488. Zuma Game](https://leetcode-cn.com/problems/zuma-game/)
# [488. Zuma Game](https://leetcode.com/problems/zuma-game/)
## 题目
@ -85,7 +85,9 @@ Explanation: To make the board empty:
- 使用广度优先搜索和剪枝
## 代码
```go
package leetcode
func findMinStep(board string, hand string) int {