일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리액트
- 컴퓨터 네트워크
- vanillaJS
- 코틀린
- 리액트 훅
- 장고
- websocket
- 데이터모델링과마이닝
- 프로그래밍 언어론
- react hook
- NextJS
- 백준
- useEffect
- React JS
- 디자인 패턴
- 프로그래머스 자바
- design pattern
- 코딩테스트 고득점 Kit 완전탐색
- 자바
- Java
- 코딩테스트 고득점 Kit
- 자바스크립트
- 프로그래머스 완전탐색
- 자바 공부
- react firebase
- JavaScript
- useState
- codesandbox
- 프로그래머스
- react
Archives
- Today
- Total
기록하는 개발자
[프로그래머스][코딩테스트 고득점 Kit][java] 구명보트 본문
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/42885
전체 코드
import java.util.Arrays;
import java.util.ArrayList;
import java.util.Collections;
class Solution {
public int solution(int[] people, int limit) {
int answer = 0, minIndex = 0;
// 오름차순 정렬
Arrays.sort(people);
for (int maxIndex = people.length-1; minIndex <= maxIndex; maxIndex--){
if(people[maxIndex] + people[minIndex] <= limit){
minIndex++;
}
answer++;
}
return answer;
}
}
728x90
'Algorithm' 카테고리의 다른 글
[프로그래머스][java] 연속된 부분 수열의 합 (0) | 2023.08.29 |
---|---|
[프로그래머스][코딩테스트 고득점 Kit][java] 큰 수 만들기 (0) | 2023.08.21 |
[프로그래머스][코딩테스트 고득점 Kit][java] 순위 (0) | 2023.08.21 |
[프로그래머스][코딩테스트 고득점 Kit][java] 도둑질 (0) | 2023.08.21 |
[프로그래머스][코딩테스트 고득점 Kit][java] 카펫 (0) | 2023.08.21 |