32 - Counting Duplicates
3831 ワード
Q.
Count the number of Duplicates
Write a function that will return the count of distinct case-insensitive alphabetic characters and numeric digits that occur more than once in the input string. The input string can be assumed to contain only alphabets (both uppercase and lowercase) and numeric digits.
Example
"abcde"-> 0 # no characters repeats more than once
"aabbcde"-> 2 # 'a' and 'b'
"aabBcde"-> 2 # 'a' occurs twice and 'b' twice ( b
and B
)
"indivisibility"-> 1 # 'i' occurs six times
"Indivisibilities"-> 2 # 'i' occurs seven times and 's' occurs twice
"aA11"-> 2 # 'a' and '1'
"ABBA"-> 2 # 'A' and 'B' each occur twice
A) function duplicateCount(text){
//...
text = text.toLowerCase();
let obj = {};
let count = 0;
for (i=0;i<text.length;i++) {
let key = text[i];
key in obj ? obj[key]++ : obj[key] = 1;
}
for (let key2 in obj) {
obj[key2] >= 2 ? count++ : null ;
}
return count;
}
3つの演算子でスキップする場合はnullを追加します.
Reference
この問題について(32 - Counting Duplicates), 我々は、より多くの情報をここで見つけました
https://velog.io/@developerjhp/알고리즘-32-Counting-Duplicates
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
function duplicateCount(text){
//...
text = text.toLowerCase();
let obj = {};
let count = 0;
for (i=0;i<text.length;i++) {
let key = text[i];
key in obj ? obj[key]++ : obj[key] = 1;
}
for (let key2 in obj) {
obj[key2] >= 2 ? count++ : null ;
}
return count;
}
3つの演算子でスキップする場合はnullを追加します.Reference
この問題について(32 - Counting Duplicates), 我々は、より多くの情報をここで見つけました https://velog.io/@developerjhp/알고리즘-32-Counting-Duplicatesテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol