Update solution 0859

This commit is contained in:
halfrost
2021-11-26 00:06:25 -08:00
committed by halfrost
parent 21e84f16eb
commit 19187ae7be

View File

@ -1,4 +1,4 @@
# [859. Buddy Strings](https://leetcode-cn.com/problems/buddy-strings/)
# [859. Buddy Strings](https://leetcode.com/problems/buddy-strings/)
## 题目
@ -53,6 +53,7 @@ For example, swapping at indices 0 and 2 in "abcd" results in "cbad".
## 代码
```go
package leetcode
func buddyStrings(s string, goal string) bool {