题目描述:
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Examples:123Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,return [0, 1].
思路:
题目比较容易,而且题目说了每组输入必有一解,扫描数组,找到i+j=target即可。
C语言解法:
|
|
C++解法:
|
|