프로그래머스 ( 카드 뭉치 ) - LEVEL 1 - python, java
📝 문제 설명
코니는 영어 단어가 적힌 카드 뭉치 두 개를 선물로 받았습니다. 코니는 다음과 같은 규칙으로 카드에 적힌 단어들을 사용해 원하는 순서의 단어 배열을 만들 수 있는지 알고 싶습니다.
- 원하는 카드 뭉치에서 카드를 순서대로 한 장씩 사용합니다.
- 한 번 사용한 카드는 다시 사용할 수 없습니다.
- 카드를 사용하지 않고 다음 카드로 넘어갈 수 없습니다.
- 기존에 주어진 카드 뭉치의 단어 순서는 바꿀 수 없습니다.
예를 들어 첫 번째 카드 뭉치에 순서대로 ["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 함수를 완성해주세요.
⚠️ 제한사항
- 1 ≤ cards1의 길이, cards2의 길이 ≤ 10
- 1 ≤ cards1[i]의 길이, cards2[i]의 길이 ≤ 10
- cards1과 cards2에는 서로 다른 단어만 존재합니다.
- 2 ≤ goal의 길이 ≤ cards1의 길이 + cards2의 길이
- 1 ≤ goal[i]의 길이 ≤ 10
- goal의 원소는 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"를 반환합니다.
‼️ 내가 생각한 풀이
goal | i | want | to | drink | water |
>idx1 | >0 | >1 | >2 | ||
>idx2 | >0 | >1 |
cards1의 인덱스를 idx1 , cards2의 인덱스를 idx2라고 가정하자
- cards1[idx1]이고 idx1 < len(cards1)인 경우 : idx1+=1
- cards2[idx2]이고 idx2 < len(cards2)인 경우 : idx2 +=1
- 🔍 idx1 < len(cards1), idx2 < len(cards2)을 안 넣으면 IndexError: list index out of range 에러가 난다
=> 왜냐하면 예시 1에서는 idx2의 값이 2가 되기 때문에 cards[idx2] 에서 인덱스 에러가 발생
🖥 PYTHON
1️⃣ 처음 풀이
def solution(cards1, cards2, goal):
idx1,idx2 = 0,0
for g in goal:
print(g,end=' ')
if idx1< len(cards1) and cards1[idx1]==g:
idx1+=1
if idx2< len(cards2) and cards2[idx2]==g:
idx2+=1
print(idx1,idx2)
if idx1== len(cards1) and idx2 == len(cards2):
answer='Yes'
else:
answer='No'
return answer
=> 테스트 20, 21, 24 에러 발생
예외 : cards1 = ['i', 'like'], cards2 = ['to', 'pizza'] , goal = ['i', 'like', 'pizza'] 이런 경우에도 result 값이 Yes가 나와야 하는데 이 코드의 경우 No가 나오게 된다.
2️⃣ 두번재 풀이
def solution(cards1, cards2, goal):
idx1,idx2 = 0,0
for g in goal:
print(g,end=' ')
if idx1< len(cards1) and cards1[idx1]==g:
idx1+=1
if idx2< len(cards2) and cards2[idx2]==g:
idx2+=1
if idx1+idx2==len(goal):
answer='Yes'
else:
answer='No'
return answer
3️⃣ 다른 사람 풀이
1) 밑에 idx1+ idx2 ==len(goal)이 필요 없음
def solution(cards1, cards2, goal):
idx1,idx2=0,0
for word in goal:
if idx1<len(cards1) and cards1[idx1]==word: #cards1에 있는 경우
idx1+=1
elif idx2<len(cards2) and cards2[idx2]==word:#cards2에 있는 경우
idx2+=1
else:
return "No" # 다 통과하지 못하고 남은 경우에는 NO 리턴하기
return "Yes" # 다 통과한 경우
2) pop 이용하기
def solution(cards1, cards2, goal):
for g in goal:
if len(cards1) > 0 and g == cards1[0]:#cards1에 있는 경우
cards1.pop(0) # cards1 맨 앞 pop
elif len(cards2) >0 and g == cards2[0]:#cards2에 있는 경우
cards2.pop(0)# cards2 맨 앞 pop
else:
return "No" #cards1 , cards2 에 pop 할 수 없을 경우
return "Yes" # cards1,cards2 모두 pop한 경우
🖥 JAVA
class Solution {
public String solution(String[] cards1, String[] cards2, String[] goal) {
int idx1 = 0;
int idx2 = 0;
for(String s: goal){
if(idx1<cards1.length && cards1[idx1].equals(s)){
idx1++;
}else if(idx2<cards2.length && cards2[idx2].equals(s)){
idx2++;
}else{
return "No";
}
}
return "Yes";
}
}
'[프로그래머스]Python,Java로 풀기 > Level 1' 카테고리의 다른 글
프로그래머스 ( 바탕화면 정리 ) - LEVEL 1 - python, java (0) | 2023.03.03 |
---|---|
프로그래머스 문제 풀다가 모르는거 정리 (0) | 2022.06.15 |
[완전탐색]모의고사 - enumerate 설명 및 사용 (0) | 2022.06.13 |