题目链接 【英文版】https://leetcode.com/problems/two sum/ 【中文版】https://leetcode cn.com/problems/two sum/ 题目 给定一个整数数组 $nums$ 和一个目标值 $target$,请你在该数组中找出和为目标值的那 两个 ...
分类:
其他好文 时间:
2019-08-18 16:04:42
阅读次数:
88
原题链接在这里:https://leetcode.com/problems/two-sum-less-than-k/ 题目: Given an array A of integers and integer K, return the maximum S such that there exists ...
分类:
其他好文 时间:
2019-08-17 13:05:38
阅读次数:
91
1. Two Sum 两数之和 https://leetcode.com/problems/two-sum/ 题目:给定一个整数数组,返回这两个数字的索引,这两个数字的和为target。假设每个输入都有一个解决方案,并且不能使用相同的元素两次。 思路:将nums中的所有元素和对应索引放到HashMa ...
分类:
其他好文 时间:
2019-08-16 13:16:34
阅读次数:
89
抱着试一试的心态打开了著名的Leetcode去做了第一题,结果连续两次提交都失败了,其间还有3次编译错误= =。 看了一下导致解答错误的输入。 第一次错误,虽然很正确地想到了使用hashmap,但没有考虑相同的输入,因为[3,3,2] 6对应的输出可以是[0,1],而不是[],而这个错误输出是由于h ...
分类:
其他好文 时间:
2019-08-13 20:07:39
阅读次数:
65
08/05/2019 Category: Array Problem #: 1. Two Sum: HashMap 15. 3Sum : Set one target and flow from left to right 16. 3Sum Closest : Pretty same as 3Sum ...
分类:
其他好文 时间:
2019-08-05 14:27:36
阅读次数:
109
LeetCode01 两数之和(Java 实现) 来源:力扣(LeetCode) 链接:https://leetcode cn.com/problems/two sum 题目描述 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下 ...
分类:
编程语言 时间:
2019-07-14 19:35:08
阅读次数:
98
题目连接:https://leetcode-cn.com/problems/two-sum/ 题目大意: 找出两个数,相加等于给定的值。 AC代码: 方法二: ...
分类:
其他好文 时间:
2019-07-13 20:04:05
阅读次数:
100
Problem describe:https://leetcode.com/problems/two-sum/ Given an array of integers, return indices of the two numbers such that they add up to a speci ...
分类:
编程语言 时间:
2019-07-13 19:56:32
阅读次数:
107
Two sum这道题为Easy级别,看似简单,其实要想到使用HashMap不太容易。这题主要考察数组值与索引的灵活使用问题。 ...
分类:
其他好文 时间:
2019-07-05 00:30:53
阅读次数:
167
第二周。 1.Algorithm:每周至少做一个 leetcode 的算法题2.Review:阅读并点评至少一篇英文技术文章3.Tip:学习至少一个技术技巧4.Share:分享一篇有观点和思考的技术文章 以下是各项的情况: Algorithm 链接:[LeetCode-01]-Two Sum 上周的 ...
分类:
其他好文 时间:
2019-06-24 09:26:03
阅读次数:
82