我正在尝试编写代码来检测函数中的哪个元素被重复以及重复了多少次。该代码还将忽略大小写的差异。
示例:示例 "abcde" -> 0 # 没有字符重复超过一次 "aabbcde" -> 2 # 'a' and 'b' "aabBcde" -> 2 # 'a' 出现两次, 'b' 出现两次 ( band B) "indivisibility" -> 1 # 'i' 出现六次
这是我的代码:
//...
let count = 0;
for(let i = 0; i < str.length; i++){
for(let j = 0; j <str.length; j++){
if(str[i] === str[j]){
count = count + 1 //Count will tally how many times each given letter is repeated
return console.log(`${str[i]} occurs ${count}`)
}
}
}
}
duplicateCount('blaaaab');
杨魅力
动漫人物
慕尼黑8549860
相关分类