Leetcode) 1. Two Sum_1

·2021년 11월 10일
0

Leet_code(Easy)

목록 보기
1/20

두 정수의 합을 구하는 문제.

Language: java

class Solution {
    public int[] twoSum(int[] nums, int target) {
        int[] newArr = new int[2];
        
        for(int i = 0; i < nums.length-1; i++) {
            for(int j = i+1; j < nums.length; j++) {
                if(target == nums[i] + nums[j]) {
                    newArr[0] = i;
                    newArr[1] = j;
                    return newArr;
                }
            }
        
        }
        
        return newArr;  
    }
}
profile
HAPPY !

0개의 댓글