title: "[프로그래머스] 카드 뭉치 Python 파이썬 해설 (Level 1) - 이도훈"
cleanUrl: "programmers/159994"
description: "프로그래머스 Level 1 문제 [카드 뭉치]의 풀이를 정리합니다."
def solution(cards1, cards2, goal):
i1, i2, j = 0, 0, 0
unable = False
while j < len(goal):
if i1 < len(cards1) and cards1[i1] == goal[j]:
i1 += 1
elif i2 < len(cards2) and cards2[i2] == goal[j]:
i2 += 1
else:
unable = True
break
j += 1
answer = 'Yes' if not unable else 'No'
return answer
프로그래머스 코딩테스트 연습 https://school.programmers.co.kr/learn/challenges