摘要:
解法1:暴力解法 class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: for i in range(len(nums)): des = target - nums[i] if des in nums 阅读全文
摘要:
202. 快乐数 - 力扣(LeetCode) 解法1: (1)把数字n转换为字符串,从而得到每一位的数值。 事先不知道数字n有多少位。 (2)把每一次求平方和得到的数存到集合中,从而避免数字重复导致的循环。 class Solution: def calSquare(self, num): str 阅读全文