51 - Duplicate Encoder
Q.
Description:
The goal of this exercise is to convert a string to a new string where each character in the new string is "(" if that character appears only once in the original string, or ")" if that character appears more than once in the original string. Ignore capitalization when determining if a character is a duplicate.
Examples
"din" => "((("
"recede" => "()()()"
"Success" => ")())())"
"(( @" => "))(("
Notes
Assertion messages may be unclear about what they display in some languages. If you read "...It Should encode XXX", the "XXX" is the expected result, not the input!
A)
function duplicateEncode(word){
// ...
word = word.toLowerCase();
let res = [];
for (i=0;i<word.length;i++) {
if(word.indexOf(word[i]) === word.lastIndexOf(word[i])) {
res.push('(')
}
else {
res.push(')')
}
}
return res.join('')
}
Author And Source
이 문제에 관하여(51 - Duplicate Encoder), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@developerjhp/알고리즘-51-Duplicate-Encoder-CodeWars-6kyu
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
function duplicateEncode(word){
// ...
word = word.toLowerCase();
let res = [];
for (i=0;i<word.length;i++) {
if(word.indexOf(word[i]) === word.lastIndexOf(word[i])) {
res.push('(')
}
else {
res.push(')')
}
}
return res.join('')
}
Author And Source
이 문제에 관하여(51 - Duplicate Encoder), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@developerjhp/알고리즘-51-Duplicate-Encoder-CodeWars-6kyu저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)