数组异或操作
# 数组异或操作 (opens new window)
Category | Difficulty | Likes | Dislikes |
---|---|---|---|
algorithms | Easy (85.68%) | 117 | - |
Companies
给你两个整数,n
和 start
。
数组 nums
定义为:nums[i] = start + 2*i
(下标从 0 开始)且 n == nums.length
。
请返回 nums
中所有元素按位异或(XOR)后得到的结果。
示例 1:
输入:n = 5, start = 0
输出:8
解释:数组 nums 为 [0, 2, 4, 6, 8],其中 (0 ^ 2 ^ 4 ^ 6 ^ 8) = 8 。
"^" 为按位异或 XOR 运算符。
1
2
3
4
2
3
4
示例 2:
输入:n = 4, start = 3
输出:8
解释:数组 nums 为 [3, 5, 7, 9],其中 (3 ^ 5 ^ 7 ^ 9) = 8.
1
2
3
2
3
示例 3:
输入:n = 1, start = 7
输出:7
1
2
2
示例 4:
输入:n = 10, start = 5
输出:2
1
2
2
提示:
1 <= n <= 1000
0 <= start <= 1000
n == nums.length
Discussion (opens new window) | Solution (opens new window)
/*
* @Author: 仲灏<izhaong@outlook.com>🌶🌶🌶
* @Date: 2022-11-08 11:02:34
* @LastEditTime: 2022-11-08 13:18:58
* @LastEditors: 仲灏<izhaong@outlook.com>🌶🌶🌶
* @Description:
* @FilePath: /loan-home/Users/izhaong/izhaong/Project_me/leetcode/1486.数组异或操作.ts
*/
/*
* @lc app=leetcode.cn id=1486 lang=typescript
*
* [1486] 数组异或操作
*
* https://leetcode.cn/problems/xor-operation-in-an-array/description/
*
* algorithms
* Easy (85.68%)
* Likes: 117
* Dislikes: 0
* Total Accepted: 79.2K
* Total Submissions: 92.4K
* Testcase Example: '5\n0'
*
* 给你两个整数,n 和 start 。
*
* 数组 nums 定义为:nums[i] = start + 2*i(下标从 0 开始)且 n == nums.length 。
*
* 请返回 nums 中所有元素按位异或(XOR)后得到的结果。
*
*
*
* 示例 1:
*
* 输入:n = 5, start = 0
* 输出:8
* 解释:数组 nums 为 [0, 2, 4, 6, 8],其中 (0 ^ 2 ^ 4 ^ 6 ^ 8) = 8 。
* "^" 为按位异或 XOR 运算符。
*
*
* 示例 2:
*
* 输入:n = 4, start = 3
* 输出:8
* 解释:数组 nums 为 [3, 5, 7, 9],其中 (3 ^ 5 ^ 7 ^ 9) = 8.
*
* 示例 3:
*
* 输入:n = 1, start = 7
* 输出:7
*
*
* 示例 4:
*
* 输入:n = 10, start = 5
* 输出:2
*
*
*
*
* 提示:
*
*
* 1 <= n <= 1000
* 0 <= start <= 1000
* n == nums.length
*
*
*/
// @lc code=start
function xorOperation(n: number, start: number): number {
let ans = 0;
for (let i = 0; i < n; i++) {
ans ^= start + 2 * i;
}
return ans;
}
// @lc code=end
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
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
上次更新: 2022/11/09, 12:24:33