[Java] 리트코드 - #1 Two Sum (Easy)

배똥회장·2022년 11월 2일
0
post-custom-banner

📝 문제

리트코드 - #1 Two Sum (Easy)


📝 답안

📌 작성 코드

class Solution {
    public int[] twoSum(int[] nums, int target) {
        int[] result = new int[2];
        loop:
        for (int i = 0; i < nums.length-1; i++) {
            for (int j = i+1; j < nums.length; j++) {
                if (nums[i] + nums[j] == target) {
                    result[0] = i;
                    result[1] = j;
                    break loop;
                }
            }
        }
        return result;
    }
}

📌 결과

profile
어쩌면 개발자
post-custom-banner

0개의 댓글