# 在评论区看了很多哈希操作都关于dict, 这里提供一个set思路,仅供交流 # class Solution: def FindNumsAppearOnce(self , array: List[int]) -> List[int]: # write code here lst = [] sec_lst = []  ...