题目描述: 中文: 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。 英文: Given an array of integers, retur ...
分类:
编程语言 时间:
2019-09-19 21:13:04
阅读次数:
111
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 ex ...
分类:
其他好文 时间:
2019-09-15 11:37:10
阅读次数:
103
Design and implement a TwoSum class. It should support the following operations:add and find. add - Add the number to an internal data structure.find ...
分类:
其他好文 时间:
2019-09-15 11:15:05
阅读次数:
93
1.两数之和 总结:熟悉了HashMap的使用 2. 总结:为了好的扩展性,使用StringBuilder来创建,之后用到了str.reverse()方法和此处Integer.parseInt(str.reverse().toString())的妙用,以及对于负数的机智处理 ...
分类:
其他好文 时间:
2019-09-13 22:36:51
阅读次数:
89
1. Two Sum Easy 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 inp ...
分类:
其他好文 时间:
2019-09-13 22:25:49
阅读次数:
95
来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/two-sum 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用 ...
分类:
其他好文 时间:
2019-09-10 00:40:40
阅读次数:
99
1. Two Sum [Easy] 思路 水题 要点 1. map用法: put, get, containsKey 2. 声明数组new int[]{1, 2}; 3. 异常情况还需要返回值的话, 抛IllegalArgumentException 代码 java class Solution { ...
分类:
其他好文 时间:
2019-09-09 19:11:24
阅读次数:
66
https://leetcode cn.com/problems/two sum/ 暴力,复杂度n的平方 var twoSum = function(nums, target) { let arr = [] for (let i = 0; i ...
分类:
其他好文 时间:
2019-09-08 19:57:49
阅读次数:
105
https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/ 求数组中加起来恰好等于target的两个数的位置。 双指针问题,分别从头和尾遍历数组,如果加起来和大于target,则尾指针左移,如果加起来和小于target,则头指 ...
分类:
编程语言 时间:
2019-08-29 00:11:59
阅读次数:
140
Leetcode之二分法专题-167. 两数之和 II - 输入有序数组(Two Sum II - Input array is sorted) 给定一个已按照升序排列 的有序数组,找到两个数使得它们相加之和等于目标数。 函数应该返回这两个下标值 index1 和 index2,其中 index1 ...
分类:
编程语言 时间:
2019-08-26 10:01:01
阅读次数:
93