-
Notifications
You must be signed in to change notification settings - Fork 0
/
260.只出现一次的数字-iii.js
83 lines (78 loc) · 1.42 KB
/
260.只出现一次的数字-iii.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* @lc app=leetcode.cn id=260 lang=javascript
*
* [260] 只出现一次的数字 III
*
* https://leetcode.cn/problems/single-number-iii/description/
*
* algorithms
* Medium (73.52%)
* Likes: 622
* Dislikes: 0
* Total Accepted: 93.6K
* Total Submissions: 127.3K
* Testcase Example: '[1,2,1,3,2,5]'
*
* 给定一个整数数组 nums,其中恰好有两个元素只出现一次,其余所有元素均出现两次。 找出只出现一次的那两个元素。你可以按 任意顺序 返回答案。
*
*
*
* 进阶:你的算法应该具有线性时间复杂度。你能否仅使用常数空间复杂度来实现?
*
*
*
* 示例 1:
*
*
* 输入:nums = [1,2,1,3,2,5]
* 输出:[3,5]
* 解释:[5, 3] 也是有效的答案。
*
*
* 示例 2:
*
*
* 输入:nums = [-1,0]
* 输出:[-1,0]
*
*
* 示例 3:
*
*
* 输入:nums = [0,1]
* 输出:[1,0]
*
*
* 提示:
*
*
* 2
* -2^31
* 除两个只出现一次的整数外,nums 中的其他数字都出现两次
*
*
*/
// @lc code=start
/**
* @param {number[]} nums
* @return {number[]}
*/
var singleNumber = function (nums) {
const map = new Map(),
ans = []
for (const v of nums) {
map.set(v, (map.get(v) || 0) + 1)
}
for (const v of nums) {
if (map.get(v) === 1) {
ans.push(v)
}
}
// for (const [k,v] of map.entries()) {
// if (v === 1) {
// ans.push(k)
// }
// }
return ans
}
// @lc code=end