def solution(cards1, cards2, goal):
while True:
if len(goal) == 0:
return "Yes"
if len(cards1) != 0:
if cards1[0] == goal[0]:
cards1.remove(cards1[0])
goal.remove(goal[0])
continue
if len(cards2) != 0:
if cards2[0] == goal[0]:
cards2.remove(cards2[0])
goal.remove(goal[0])
continue
return "No"
728x90
반응형
LIST
'알고리즘' 카테고리의 다른 글
[프로그래머스] 추억 점수 (0) | 2023.10.07 |
---|---|
[프로그래머스] 명예의 전당(1) (0) | 2023.10.07 |
[프로그래머스] 폰켓몬 (0) | 2023.10.07 |
[프로그래머스] 과일 장수 (0) | 2023.10.07 |
[프로그래머스] 그룹별 조건에 맞는 식당 목록 출력하기 (0) | 2023.10.07 |