题目名称

字符串轮转。给定两个字符串s1和s2,请编写代码检查s2是否为s1旋转而成(比如,waterbottle是erbottlewat旋转后的字符串)。

示例

输入:s1 = “waterbottle”, s2 = “erbottlewat”
输出:True

题解

答案

1
2
3
4
5
6
7
8
9
10
/**
* @param {string} s1
* @param {string} s2
* @return {boolean}
*/
var isFlipedString = function(s1, s2) {
if(s1.length !== s2.length) return false
const ss = s2+s2
return ss.indexOf(s1) !== -1
};