99클럽 코테 스터디 23일차 TIL - 그리디

김동하·2024년 8월 13일
0

알고리즘

목록 보기
71/90
post-thumbnail

문제

Array Partition

풀이

코드

class Solution {
    public int arrayPairSum(int[] nums) {
        Arrays.sort(nums);
        int answer = 0;
        
        for (int i = 0; i < nums.length; i += 2) {
            answer += nums[i];
        }
        return answer;
    }
}

정리

profile
프론트엔드 개발

0개의 댓글