반응형
https://leetcode.com/problems/two-sum/
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
vector<int>ans;
for(int i = 0;i<nums.size();i++)
for(int j = i+1; j<nums.size(); j++)
if(nums[i]+nums[j] == target){
ans.push_back(i);
ans.push_back(j);
}
return ans;
}
};
반응형
'IT > 알고리즘' 카테고리의 다른 글
43] 프로그래머스 두 개 뽑아서 더하기 (0) | 2020.09.14 |
---|---|
42] Leetcode 1528. Shuffle String (0) | 2020.08.18 |
40] Leetcode 912. Sort an Array (0) | 2020.08.07 |
39★] Leetcode 905. Sort Array By Parity (0) | 2020.08.06 |
38] Leetcode 961. N-Repeated Element in Size 2N Array (0) | 2020.08.05 |
댓글