We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
原题链接: https://leetcode.cn/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof/
解题思路:
nums
nums[i]
i
nums[nums[i]]
/** * @param {number[]} nums * @return {number} */ var findRepeatNumber = function(nums) { for (let i = 0; i < nums.length; i++) { // 如果当前位置放的不是该有的值,表示需要将nums[i]放到对应位置上 if (nums[i] !== i) { // 如果发现该放的位置已经有了对应的值,表示找到重复数字 if (nums[i] === nums[nums[i]]) { return nums[i] } // 将nums[i]放到相应位置 nums[nums[i]] = nums[i] } } // 如果没有重复的数字,返回-1 return -1 };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接:
https://leetcode.cn/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof/
解题思路:
nums
,如果发现nums[i]
存储的值不为i
,就把nums[i]
存储到相应位置,即nums[nums[i]]
。nums[nums[i]]
已经储存了nums[i]
,表示出现重复,将nums[i]
返回即可。The text was updated successfully, but these errors were encountered: