首页
注册
登录
V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请
登录
V2EX
›
huanyouchen
›
全部回复第 1 页 / 共 1 页
回复总数
1
2018-06-30 20:43:57 +08:00
回复了
a476286557
创建的主题
›
Python
›
leetcode 两数之和 Python 求解答
通过字典构建一个哈希表:
class Solution:
def twoSum(self, nums, target):
dic = {}
for i,num in enumerate(nums):
if num in dic:
return [dic[num],i]
else:
dic[target-num] = i
关于
·
帮助文档
·
博客
·
API
·
FAQ
·
实用小工具
·
2928 人在线
最高记录 6679
·
Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 9ms ·
UTC 14:57
·
PVG 22:57
·
LAX 06:57
·
JFK 09:57
Developed with
CodeLauncher
♥ Do have faith in what you're doing.