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/single-number-ii/
解题思路:
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 } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接:
https://leetcode.cn/problems/single-number-ii/
解题思路:
1
的数字,就将其返回The text was updated successfully, but these errors were encountered: