leetcode 287: Find the Duplicate Number(二分和List)

題意:找出數組中的重複元素。數組 思路1:將數組中的元素放入List裏面,當有元素已經存在時就直接返回這個值。排序 代碼:io class Solution {     public int findDuplicate(int[] nums) {         List <Integer> res =new ArrayList<Integer>();         int result=0;
相關文章
相關標籤/搜索