两数之和Python3
题解一:暴力穷举法class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(len(nums)-1): for j in range(1, len(nums)): if nums[i] + nums[j] == target and i != j: ...