코딩테스트/프로그래머스

[프로그래머스/PYTHON] 카드 뭉치

jinsang-2 2024. 5. 27. 09:38

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

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

def solution(c1, c2, goal):    
    answer='Yes'
    index_c1,index_c2=0,0

    for i in goal:
        if len(c1)>index_c1 and c1[index_c1]==i:
            index_c1 += 1
        elif len(c2)>index_c2 and c2[index_c2]==i:
            index_c2 +=1
        else:
            answer='No'
            break
    
    return answer