LeetCode 796. 旋转字符串
题目描述
思路分析
思路描述
参考代码
1
2
3
4
5
6
7
func rotateString(s string, goal string) bool {
if len(s) != len(goal) {
return false
}
s = s + s
return strings.Contains(s, goal)
}
1
write your code here
CC BY-NC-SA 4.0
许可协议,转载请注明出处!
本博客所有文章除特别声明外,均采用