Lv.0 - 외계어 사전_01.06

송철진·2023년 1월 6일
0

문제 설명

PROGRAMMERS-962 행성에 불시착한 우주비행사 머쓱이는 외계행성의 언어를 공부하려고 합니다. 알파벳이 담긴 배열 spell과 외계어 사전 dic이 매개변수로 주어집니다. spell에 담긴 알파벳을 한번씩만 모두 사용한 단어가 dic에 존재한다면 1, 존재하지 않는다면 2를 return하도록 solution 함수를 완성해주세요.

제한사항
spell과 dic의 원소는 알파벳 소문자로만 이루어져있습니다.
2 ≤ spell의 크기 ≤ 10
spell의 원소의 길이는 1입니다.
1 ≤ dic의 크기 ≤ 10
1 ≤ dic의 원소의 길이 ≤ 10
spell의 원소를 모두 사용해 단어를 만들어야 합니다.
spell의 원소를 모두 사용해 만들 수 있는 단어는 dic에 두 개 이상 존재하지 않습니다.
dic과 spell 모두 중복된 원소를 갖지 않습니다.

입출력 예

spelldicresult
["p", "o", "s"]["sod", "eocd", "qixm", "adio", "soo"]2
["z", "d", "x"]["def", "dww", "dzx", "loveaw"]1
["s", "o", "m", "d"]["moos", "dzx", "smm", "sunmmo", "som"]2

나의 코드

function solution(spell, dic) {
    for(let i=0; i<dic.length; i++){
        for(let j=0; j<spell.length; j++){
            dic[i].indexOf(spell[j]) === -1 ? dic[i] += spell[j] :
            dic[i] = dic[i].replace(spell[j], "")
        }
    }
    // return dic.filter(el => el === "").length === 0 ? 2 : 1 
  	return dic.includes("") ? 1 : 2 
}

풀이

  1. 다음 과정을 순회한다:
    spell의 string 요소가 dic의 string 요소에 대해
    존재하면 첫번째 값을 빈문자열""로 교체한다
    존재하지 않으면 spell의 해당 string요소를 dic의 string요소에 추가한다
for(let i=0; i<dic.length; i++){
    for(let j=0; j<spell.length; j++){
        dic[i].indexOf(spell[j]) === -1 ? dic[i] += spell[j] :
        dic[i] = dic[i].replace(spell[j], "")
    }
}
  1. 순회 종료 후, 빈문자열""이 dic에 존재하면 1을 반환하고 없으면 2를 반환한다
  • 처음엔 빈문자열""만 filter()해서 길이가 0이면 2, 아니면 1이라고 생각했는데 다시 생각해보니 단순히 includes()로 존재 여부를 확인하면 되는 거였다
// return dic.filter(el => el === "").length === 0 ? 2 : 1 
return dic.includes("") ? 1 : 2 

의문❓

for...in 문을 쓰면 잘 되는데

function solution(spell=["s", "o", "m", "d"], 
                  dic=["moos", "dzx", "smm", "sunmmo", "som"]) {
    for(let i in dic){
        for(let j in spell){
            dic[i].indexOf(spell[j]) === -1 ? dic[i] += spell[j] :
            dic[i] = dic[i].replace(spell[j], "")
        }
    }
    console.log(dic) // ["od","zxsom","mod","unmd","d"]
    return dic.filter(el => el === "").length === 0 ? 2 : 1 
}

solution()

for...of 문을 쓰면 dic이 재할당되지 않고 원래 값 그대로 나온다 왜일까?

function solution(spell=["s", "o", "m", "d"], 
                  dic=["moos", "dzx", "smm", "sunmmo", "som"]) {
    for(let d of dic){
        for(let s of spell){
            d.indexOf(s) === -1 ? d += s :
            d = d.replace(s, "")
        }
    }
    console.log(dic) // ["moos","dzx","smm","sunmmo","som"]
    return dic.filter(el => el === "").length === 0 ? 2 : 1 
}

solution()
profile
검색하고 기록하며 학습하는 백엔드 개발자

0개의 댓글