class Solution(object): def duplicateInArray(self, nums): “”“ :type nums: List[int] :rtype int “”“ for i in nums: #判断列表nums中在不在0~n-1 ...
確定! 回上一頁