diff --git "a/greedy/\352\265\254\353\252\205\353\263\264\355\212\270/\353\260\225\354\247\200\354\233\220.java" "b/greedy/\352\265\254\353\252\205\353\263\264\355\212\270/\353\260\225\354\247\200\354\233\220.java" new file mode 100644 index 0000000..1314f81 --- /dev/null +++ "b/greedy/\352\265\254\353\252\205\353\263\264\355\212\270/\353\260\225\354\247\200\354\233\220.java" @@ -0,0 +1,19 @@ +import java.util.*; +class Solution { + public int solution(int[] people, int limit) { + int answer = 0; + Arrays.sort(people); + + int min = 0; + int max = people.length -1; + + while(min <= max) { + if(people[min] + people[max] <= limit) { + min++; + } + max--; + answer++; + } + return answer; + } +}