https://school.programmers.co.kr/learn/courses/30/lessons/159994
class Solution {
public String solution(String[] cards1, String[] cards2, String[] goal) {
int x = 0;
int y = 0;
for(int i = 0; i < goal.length; i++){
if(x < cards1.length && cards1[x].equals(goal[i])){
x++;
continue;
}
if(y < cards2.length && cards2[y].equals(goal[i])){
y++;
continue;
}
return "No";
}
return "Yes";
}
}
'TIL' 카테고리의 다른 글
[TIL 2024/09/12] 공공 데이터 API service Key (0) | 2024.09.13 |
---|---|
[TIL 2024/09/11] HTTP Interface (1) | 2024.09.12 |
[TIL 2024/09/09] 스프링부트 AOP 사용해보기 (0) | 2024.09.10 |
[TIL 2024/09/06] MSA 프로젝트 초기설정 (2) | 2024.09.07 |
[TIL 2024/09/05] 프로그래머스 명예의 전당(1) (0) | 2024.09.05 |