尤其,你提交代码后,网站会多方面验证你的答案。
另外,提交成功后,你可以查看自己的运行时间,以及别人的运行时间。
最最关键的是,这之后,你可以查看别人的优秀代码。
这还不算,其中讨论模块,解决方案模块。
虽然以前在大学,玩过ACM。但是,体验和leetcode差很多。
所以,我是比较推荐的。
之前,我都是按照题目的序号来进行解题。
不过,其中hard难度的题目,确实对于现在的我来说有一定难度。
尤其是做到一篇寻找最长回文串的midium难度后,又做了一个判断是否为回文串的easy难度题目。
所以,我决定从简单的题目开始做起来。
我应该只会将一些midium难度的题目发布上来。以及一些有着不错亮点的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 input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].