https://school.programmers.co.kr/learn/courses/30/lessons/159994
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
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/PYTHON] 2023 KAKAO BLIND RECRUITMENT 개인정보 수집 유효기간 (0) | 2024.05.27 |
---|---|
[프로그래머스/PYTHON] 둘만의 암호 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 대충 만든 자판 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 덧칠하기 (0) | 2024.05.27 |
[프로그래머스/PYTHON] 바탕화면 정리 (0) | 2024.05.27 |