1 Star 0 Fork 0

陈世杰/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1.两数之和.py 670 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈世杰 提交于 2022-11-23 14:41 . 两数之和
#
# @lc app=leetcode.cn id=1 lang=python3
#
# [1] 两数之和
#
# @lc code=start
# class Solution:
# def twoSum(self, nums: List[int], target: int) -> List[int]:
# n = len(nums)
# for i in range(n):
# for j in range(i + 1, n):
# if nums[i] + nums[j] == target:
# return [i, j]
# return []
class Solution:
def twoSum(self,nums:List[int],target:int)->List[int]:
hashtable = dict()
for i,num in enumerate(nums):
if target - num in hashtable:
return [hashtable[target - num],i]
hashtable[nums[i]]=i;
return []
# @lc code=end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xingwozhonghua/leetcode.git
git@gitee.com:xingwozhonghua/leetcode.git
xingwozhonghua
leetcode
leetcode
master

搜索帮助