LeetCode—劍指Offer:數組中重複的數字(臨時數組)

劍指Offer:數組中重複的數字(簡單) 2020年8月7日java 題目來源:力扣web 解題 簡單的想法,用數組記錄出現次數,若不爲0則說明重複,直接返回這個值數組 class Solution { public int findRepeatNumber(int[] nums) { int len=nums.length; //新建一個長度爲len的數組
相關文章
相關標籤/搜索