Đề bài:
Bài giải:
Code Python
class Solution(object):
def twoSum(self, nums, target):
"""
:type nums: List[int]
:type target: int
:rtype: List[int]
"""
dic = dict()
for i, num in enumerate(nums):
x = target - num
if x in dic:
return dic[x], i
dic[num] = i
Nhờ các bạn code với ngôn ngữ khác