https://school.programmers.co.kr/learn/courses/30/lessons/159994
[풀이]
쉽다. goal 을 기준으로 각각의 단어를 순회하면서 cards1 에 있으면 넘어가고, 없으면 cards2에 있는지 확인, 없으면 No / 다 검사해서 있으면 Yes 리턴하면 끝!
function solution(cards1, cards2, goal) {
let index1 = 0;
let index2 = 0;
for (word of goal) {
if(word === cards1[index1]) index1++;
else if(word === cards2[index2]) index2++;
else return "No";
}
return "Yes";
}
728x90
반응형
'자료구조+알고리즘 > Programmers' 카테고리의 다른 글
[프로그래머스_lv2] 타겟 넘버 (javascript) (0) | 2024.03.08 |
---|---|
[프로그래머스_Lv.1] 바탕화면 정리 (javascript) (0) | 2024.02.27 |
[프로그래머스 Lv.1] 공원 산책 (javascript) (1) | 2024.02.26 |
[프로그래머스 Lv.1] 추억 점수 (javascript) (0) | 2024.02.22 |
[프로그래머스Lv.1] 짝수와 홀수 (.javascript 풀이) (0) | 2023.10.12 |