[프로그래머스 파이썬] 카드 뭉치

일단 해볼게·2023년 11월 13일
0

프로그래머스

목록 보기
78/106

https://school.programmers.co.kr/learn/courses/30/lessons/159994

def solution(cards1, cards2, goal):
    
    for i in goal:
        if len(cards1) != 0 and cards1[0] == i:
            cards1.pop(0)
        elif len(cards2) != 0 and cards2[0] == i:
            cards2.pop(0)
        else:
            return "No"

    return "Yes"

카드 길이를 체크해야 list out of index가 발생하지 않는다.

profile
시도하고 More Do하는 백엔드 개발자입니다.

0개의 댓글