코니는 영어 단어가 적힌 카드 뭉치 두 개를 선물로 받았습니다. 코니는 다음과 같은 규칙으로 카드에 적힌 단어들을 사용해 원하는 순서의 단어 배열을 만들 수 있는지 알고 싶습니다.
예를 들어 첫 번째 카드 뭉치에 순서대로 ["i", "drink", "water"], 두 번째 카드 뭉치에 순서대로 ["want", "to"]가 적혀있을 때 ["i", "want", "to", "drink", "water"] 순서의 단어 배열을 만들려고 한다면 첫 번째 카드 뭉치에서 "i"를 사용한 후 두 번째 카드 뭉치에서 "want"와 "to"를 사용하고 첫 번째 카드뭉치에 "drink"와 "water"를 차례대로 사용하면 원하는 순서의 단어 배열을 만들 수 있습니다.
문자열로 이루어진 배열 cards1
, cards2
와 원하는 단어 배열 goal
이 매개변수로 주어질 때, cards1
과 cards2
에 적힌 단어들로 goal
를 만들 있다면 "Yes"를, 만들 수 없다면 "No"를 return하는 solution 함수를 완성해주세요.
cards1
의 길이, cards2
의 길이 ≤ 10
cards1[i]
의 길이, cards2[i]
의 길이 ≤ 10cards1
과 cards2
에는 서로 다른 단어만 존재합니다.goal
의 길이 ≤ cards1
의 길이 + cards2
의 길이
goal[i]
의 길이 ≤ 10goal
의 원소는 cards1
과 cards2
의 원소들로만 이루어져 있습니다.cards1
, cards2
, goal
의 문자열들은 모두 알파벳 소문자로만 이루어져 있습니다.cards1 | cards2 | goal | result |
---|---|---|---|
["i", "drink", "water"] | ["want", "to"] | ["i", "want", "to", "drink", "water"] | "Yes" |
["i", "water", "drink"] | ["want", "to"] | ["i", "want", "to", "drink", "water"] | "No" |
입출력 예 #1
본문과 같습니다.
입출력 예 #2
cards1
에서 "i"를 사용하고 cards2
에서 "want"와 "to"를 사용하여 "i want to"까지는 만들 수 있지만 "water"가 "drink"보다 먼저 사용되어야 하기 때문에 해당 문장을 완성시킬 수 없습니다. 따라서 "No"를 반환합니다.
function solution(cards1, cards2, goal) {
var answer = "Yes";
const cards1Goal = [];
const cards2Goal = [];
for(let i = 0; i < goal.length; i++) {
if(cards1.indexOf(goal[i]) !== -1) {
cards1Goal.push(goal[i]);
} else {
cards2Goal.push(goal[i]);
}
}
if(cards1Goal.length !== 0) {
for(let j = 0; j < cards1Goal.length; j++) {
if(cards1[j] !== cards1Goal[j]) answer = "No"
}
}
if(cards2Goal.length !== 0) {
for(let k = 0; k < cards2Goal.length; k++) {
if(cards2[k] !== cards2Goal[k]) answer = "No"
}
}
return answer;
}
저의 풀이는 위와 같습니다.
우선 저는 Goal을보고 cards1 배열이 가지고 있는 단어와 cards2 배열이 가지고 있는 단어를 cards1Goal
cards2Goal
배열을 만들어 각각 나누어 주는것을 생각했습니다.
for(let i = 0; i < goal.length; i++) {
if(cards1.indexOf(goal[i]) !== -1) {
cards1Goal.push(goal[i]);
} else {
cards2Goal.push(goal[i]);
}
}
👆 goal 배열을 순회하며 goal의 단어 중 cards1이 가지고 있는 단어는 cards1Goal 배열에 넣어주고, 그 외는 cards2Goal 배열에 넣어주는 로직입니다.
만약 다음과 같은 예시가 있을때 위 처럼 나누어주면 어떻게 되는지 테스트케이스 2개와 함께 봅시당~
["i", "drink", "water"] - cards1
["want", "to"] - cards2
["i", "want", "to", "drink", "water"] - goal
파라미터가 위와 같을 때 cards1Goal, cards2Goal 각각은 다음과 같이 구성됩니다.
cards1Goal - ["i", "drink", "water"]
cards2Goal - ["want", "to"]
["i", "water", "drink"] - cards1
["want", "to"] - cards2
["i", "want", "to", "drink", "water"] - goal
파라미터가 위와 같을 때 cards1Goal, cards2Goal 각각은 다음과 같이 구성됩니다.
cards1Goal - ["i", "drink", "water"]
cards2Goal - ["want", "to"]
if(cards1Goal.length !== 0) {
for(let j = 0; j < cards1Goal.length; j++) {
if(cards1[j] !== cards1Goal[j]) answer = "No"
}
}
if(cards2Goal.length !== 0) {
for(let k = 0; k < cards2Goal.length; k++) {
if(cards2[k] !== cards2Goal[k]) answer = "No"
}
}
그 다음 저는 각 배열을 순회하면서 순서를 비교하고, 순서가 다르면 "No"를 리턴하는 방식으로 해결했습니다.
여기서 유의해야할 점은 cards1Goal.length
, cards2Goal.length
이 부분인데요.
처음에 cards1.length
, cards2.length
만큼 for문을 돌렸었는데 이럴 경우 다음 테스트케이스에 위배되어 실패하게 되더군요.
입력값 〉 ["i", "drink", "water"], ["want", "to", "juice"], ["i", "want", "to", "drink", "water"]
기댓값 〉 "Yes"
입력값 〉 ["i", "drink", "water"], ["want", "to", "juice"], ["i", "want", "to", "drink", "juice"]
기댓값 〉 "Yes"
위에 테스트케이스를 보시면 "juice" 라는 녀석때문에 cards1.length로 하게되면 이미 goal에 있는 단어를 완성했음에도 제 로직대로라면 for문을 한번 더 돌게되고, cards1[j] !== cards1Goal[j]
조건이 성립되게 되어 "No" 를 리턴하게됩니다.
그래서 조건문의 배열 길이를 조정하여 문제를 해결해주었습니다~