https://school.programmers.co.kr/learn/courses/30/lessons/159994
def solution(cards1, cards2, goal):
for g in goal:
if len(cards1) > 0 and g == cards1[0]:
cards1.remove(g)
elif len(cards2) > 0 and g == cards2[0]:
cards2.remove(g)
else:
return "No"
else:
return "Yes"
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스] / [Level 1] / [Python] 기사단원의 무기 (0) | 2023.10.31 |
---|---|
[프로그래머스] / [Level 1] / [Python] 과일 장수 (0) | 2023.10.31 |
[프로그래머스] / [Level 1] / [Python] 명예의 전당 (1) (0) | 2023.10.30 |
[프로그래머스] / [Level 1] / [Python] 추억 점수 (0) | 2023.10.30 |
[프로그래머스] / [Level 1] / [Python] 콜라 문제 (0) | 2023.10.13 |