class Solution {
public int[] twoSum(int[] nums, int target) {
int[] answer = new int[2];
for(int i=0; i<nums.length; i++) {
for(int j=i+1; j<nums.length; j++) {
if(nums[i] + nums[j] == target) {
answer[0] = i;
answer[1] = j;
}
}
}
return answer;
}
}
- 2중 for문 통해서 배열의 값을 비교 두 값을 더했을때 target과 값이 동일할 시 answer에 담아서 리턴
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 1700. Number of Students Unable to Eat Lunch (0) | 2021.11.07 |
---|---|
[LeetCode] 71. Simplify Path (0) | 2021.11.07 |
[LeetCode] 20. Valid Parentheses (0) | 2021.11.07 |
[LeetCode] Running Sum of 1d Array (0) | 2021.05.01 |