Closed jsycdut closed 5 years ago
下次请直接 copy markdown 模版源码,不要自己实现。https://github.com/apachecn/awesome-algorithm/blob/master/PULL_REQUEST_TEMPLATE.md
下次请直接 copy markdown 模版源码,不要自己实现。https://github.com/apachecn/awesome-algorithm/blob/master/PULL_REQUEST_TEMPLATE.md
在GitHub的第一次PR,不懂规矩,抱歉抱歉:cry:
没关系,谢谢你的贡献。
1. Two Sum
难度: Easy
刷题内容
解题方案
暴力解法,两轮遍历
beats 27.6%
上面的思路1太慢了,我们可以牺牲空间换取时间
target - 当前数字
, 则表面 当前值和 lookup中的值加和为 target.target - 当前数字
的 index 和 当前值的 index