문제링크 : https://leetcode.com/problems/two-sum/
문제풀이
배열의 데이터들을 두 개씩 더하면서 target과 일치하는지 체크한다.
소스코드
class Solution { public int[] twoSum(int[] nums, int target) { for (int i = 0; i < nums.length - 1; i++) { for (int j = i + 1; j < nums.length; j++) { int sum = nums[i] + nums[j]; if (sum == target) { return new int[] {i, j}; } } } return null; } }
'Algorithm > 문제풀이' 카테고리의 다른 글
[LeetCode] 3번: Longest Substring Without Repeating Characters (0) | 2019.06.29 |
---|---|
[LeetCode] 2번: Add Two Numbers (0) | 2019.06.28 |
[백준] 4963번: 섬의 개수 (0) | 2019.06.28 |
[백준] 10828번: 스택 (0) | 2019.06.28 |
[백준] 1012번: 유기농 배추 (0) | 2019.06.21 |