数组中的重复的数字
C++代码class Solution { public: int findRepeatNumber(vectorJava代码& nums){ set numsSet; for(int i = 0; i < nums.size(); i++){ if(numsSet.find(nums[i]) == numsSet.end()){ numsSet.insert(nums[i]); } else{ return nums[i]; } } return -1; } };
class Solution { public int findRepeatNumber(int[] nums) { Setset = new HashSet (); int repeat = -1; for (int num : nums) { if (!set.add(num)) { repeat = num; break; } } return repeat; } }
如果有任何问题可以邮箱联系我:raymondlam1@yeah.net
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)