- 博客(1)
- 问答 (1)
- 收藏
- 关注
原创 Leecode 1
from typing import List class Solution: def twoSum(self, nums: List[int], target: int): hashtable = dict() for i, num in enumerate(nums): if target - num in hashtable: print(i, nums[i]) retur.
2021-08-11 18:32:03 82
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人