LeetCode—剑指Offer:数组中重复的数字(临时数组)剑指Offer:数组中重复的数字(简单)
剑指Offer:数组中重复的数字(简单)2020年8月7日题目来源:力扣解题简单的想法,用数组记录出现次数,若不为0则说明重复,直接返回这个值class Solution { public int findRepeatNumber(int[] nums) { int len=nums.length; //新建一个长度为len的数组用来存放数字出现次数 int[] occ=new int[len]; for(int i=0;i