LeetCode 001. Two Sum
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 题目: Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based. You may assume that each input would have exactly one solution. Input: numbers={2, 7, 11, 15}, target=9 Output: index1=1, index2=2 好像在《编程之美》里看到过,用hashset.时间复杂度O(N)。 class Solution { public: vector<int> twoSum(vector<int>& nums, int target) {