알고리즘 51 - Duplicate Encoder

박진현·2021년 7월 20일
0

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('')
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글