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题解:137. 只出现一次的数字 II,哈希表,JavaScript,详细注释 #415

Open
chencl1986 opened this issue Mar 15, 2023 · 0 comments

Comments

@chencl1986
Copy link
Owner

原题链接:
https://leetcode.cn/problems/single-number-ii/

解题思路:

  1. 使用哈希表统计所有数字出现的次数。
  2. 遍历哈希表,遇到出现次数为1的数字,就将其返回
/**
 * @param {number[]} nums
 * @return {number}
 */
var singleNumber = function (nums) {
  let map = new Map() // 使用哈希表统计数字出现的次数

  // 遍历nums,统计每个数字出现的次数
  for (const num of nums) {
    map.set(num, map.has(num) ? map.get(num) + 1 : 1)
  }

  // 遍历哈希表,遇到出现次数为1的数字,即返回
  for (const [num, count] of map) {
    if (count === 1) {
      return num
    }
  }
}
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