일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- java
- Spring JPA
- SECS/GEM
- SECS-II
- spring boot
- linux
- 파이썬
- Gem
- SW Expert Academy
- Computer Science
- python
- spotify
- SECS
- 회귀
- regression
- 자바
- programmers
- 회원가입
- CS
- c
- Spring
- modern c++
- 프로그래머스
- C++
- SWEA
- MYSQL
- Baekjoon
- 스포티파이
- Spotify Api
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 42576 완주하지 못한 선수 본문
728x90
programmers.co.kr/learn/courses/30/lessons/42576
배열을 정렬을 해서 완주자와 참가자를 비교를 해서 완주를 못한 참가자를 찾는다.
import java.util.Arrays;
class Solution {
public String solution(String[] participant, String[] completion) {
String answer = "";
Arrays.sort(completion); //완주자를 오름차순으로 정렬
Arrays.sort(participant); //참가자를 오름차순으로 정렬
int i;
for (i = 0; i < completion.length; i++) {
if(!completion[i].equals(participant[i])) { //정렬된 상태에서 다른값이 있으면 정지하고 값을 저장
break;
}
}
answer=participant[i];
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 42862 체육복 (0) | 2021.01.07 |
---|---|
[Programmers 프로그래머스] 42840 모의고사 (0) | 2021.01.07 |
[Programmers 프로그래머스] 68644 두 개 뽑아서 더하기 (JAVA) (0) | 2021.01.06 |
[Programmers 프로그래머스] 64061 크레인 인형뽑기 게임 (0) | 2021.01.06 |
[SWEA SW Expert Academy] 5658 보물상자 비밀번호 (0) | 2020.12.02 |
Comments