leetcode2sumc leetcode solution leetcode中问题的解决
leetcode 2和c leetcode_solution leetcode中问题的解决1.二和给定一个整数数组,返回两个数字的索引,使它们相加为特定目标。您可以假设每个输入都只有一个解决方案,并且您不能两次使用相同的元素。示例:给定nums = [2, 7, 11, 15], target = 9,因为nums[0] + nums[1] = 2 + 7 = 9,返回[0, 1]。 class Solution { public: vector twoSum(vector& nums, int target) { unordered_map map; int i; vector result; for(i=0;i
用户评论