Skip to content
New issue

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

LeetCode题解:剑指 Offer 03. 数组中重复的数字,原地置换,JavaScript,详细注释 #446

Open
chencl1986 opened this issue Oct 19, 2023 · 0 comments

Comments

@chencl1986
Copy link
Owner

原题链接:
https://leetcode.cn/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof/

解题思路:

  1. 遍历nums,如果发现nums[i]存储的值不为i,就把nums[i]存储到相应位置,即nums[nums[i]]
  2. 如果发现nums[nums[i]]已经储存了nums[i],表示出现重复,将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
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant