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
- docker
- @jsonproperty
- WEB SOCKET
- 개인프로젝트
- 생성자 주입
- 항해99
- 패스트캠퍼스
- Spring
- 스웨거
- Spring Security
- 프로그래머스
- 남궁성과 끝까지 간다
- AWS
- CentOS
- DB
- MYSQL
- Kafka
- 웹개발
- emqx
- 카프카
- visualvm
- 스프링의 정석
- java
- JWT
- 스파르타코딩클럽
- 쇼트유알엘
- 시큐리티
- 데이터베이스
- EC2
- JavaScript
Archives
- Today
- Total
Nellie's Blog
[프로그래머스] 레벨2 최댓값과 최솟값 본문
728x90
문제 설명
- 문자열 s에는 공백으로 구분된 숫자들이 저장되어 있습니다.
- 문자열 s에 나타나는 숫자 중 최소값과 최대값을 찾아
- 이를 "(최소값) (최대값)"형태의 문자열을 반환하는 함수, solution을 완성하세요.
- 문자열 s에는 둘 이상의 정수가 공백으로 구분되어 있습니다.
public static String solution(String s) {
String[] array = s.split(" ");
ArrayList<Integer> orderedArrList = new ArrayList<>();
for (String num : array)
orderedArrList.add(Integer.parseInt(num));
for (int startIdxOfPassThrogh = 0; startIdxOfPassThrogh < orderedArrList.size()-1; startIdxOfPassThrogh++) {
int minmumValueIdx = startIdxOfPassThrogh;
for (int nowIdx = startIdxOfPassThrogh + 1; nowIdx < orderedArrList.size(); nowIdx++) {
if (orderedArrList.get(nowIdx) < orderedArrList.get(minmumValueIdx))
minmumValueIdx = nowIdx;
}
if (startIdxOfPassThrogh != minmumValueIdx) {
int temp = orderedArrList.get(minmumValueIdx);
orderedArrList.set(minmumValueIdx, orderedArrList.get(startIdxOfPassThrogh));
orderedArrList.set(startIdxOfPassThrogh, temp);
}
}
return String.format("%d %d", orderedArrList.get(0), orderedArrList.get(orderedArrList.size()-1));
}
'Back-end > Algorithm' 카테고리의 다른 글
[프로그래머스] 레벨1 콜라츠 추측 (0) | 2023.06.27 |
---|---|
[프로그래머스 입문] 치킨 쿠폰 (0) | 2023.06.27 |
[프로그래머스] 직사각형 별찍기 (0) | 2023.06.24 |
프로그래머스 (Level 1) 완주하지 못한 선수 [Java] (0) | 2023.06.23 |
[프로그래머스 입문] [java] 배열 원소의 길이 (2) | 2023.06.22 |