250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- javascript
- Properties
- JPA
- NIO
- deque
- map
- scanner
- dfs
- 큐
- 스택
- spring boot
- Java
- set
- html
- Union-find
- string
- CSS
- sql
- 리소스모니터링
- 스프링부트
- BFS
- Calendar
- date
- alter
- List
- 힙덤프
- GC로그수집
- math
- priority_queue
- union_find
Archives
- Today
- Total
매일 조금씩
프로그래머스 level1 : 카드 뭉치 - Java 본문
728x90
반응형
class Solution {
public String solution(String[] cards1, String[] cards2, String[] goal) {
String answer = "Yes";
int idx1 = 0;
int idx2 = 0;
for(int i = 0; i < goal.length; i++){
if(goal[i].equals(cards1[idx1])) {
if(idx1 != cards1.length - 1) idx1++;
}else if(goal[i].equals(cards2[idx2])) {
if(idx2 != cards2.length - 1) idx2++;
}else {
answer = "No";
break;
}
}
return answer;
}
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
프로그래머스 level1 : 가장 가까운 같은 글자 - Java (0) | 2023.06.02 |
---|---|
프로그래머스 level1 : 둘만의 암호 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 문자열 내 p와 y의 개수 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 자릿수 더하기 - Java (0) | 2023.06.02 |
프로그래머스 level1 : 자연수 뒤집어 배열로 만들기 - Java (0) | 2023.06.02 |