两数、三数、四数之和相关题目(Leetcode题解-Python语言)
作为 Leetcode 的第一题,两数之和自然是知名度最高的,从两数之和出发也有不少的衍生题目,下面就让我们好好地解决它们。1. 两数之和class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: record = dict() for i, num in enumerate(nums): if target - num in rec