题解 | #检查重复字符串#
检查重复字符串
https://www.nowcoder.com/practice/5ef31f11adf64d9fb18d74860e9ab873
//没有使用正则
function containsRepeatingLetter(str) {
let arr = str.split('')
return arr.some((item, index) => {
let arr = str.split('')
return arr.some((item, index) => {
//判断该项是否是数字
if(!isNaN(item + 1)){
return false
}
if(!isNaN(item + 1)){
return false
}
//为字母时,判断前后两项是否相等
return item === arr[index + 1]
})
return item === arr[index + 1]
})
}