Skip to content

Commit 7d548a1

Browse files
Merge pull request SharingSource#204 from SharingSource/ac_oier
✨style: Modify 412
2 parents 9967228 + 9ff946d commit 7d548a1

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

LeetCode/421-430/421. 数组中两个数的最大异或值(中等).md

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ Tag : 「字典树」、「贪心」
66

77

88

9-
给你一个整数数组 nums ,返回 nums[i] XOR nums[j] 的最大运算结果,其中 0 ≤ i ≤ j < n 。
10-
11-
**进阶**:你可以在 O(n) 的时间解决这个问题吗?
12-
9+
给你一个整数数组 $nums$ ,返回 `nums[i] XOR nums[j]` 的最大运算结果,其中 $0 ≤ i ≤ j < n$ 。
1310

11+
**进阶**:你可以在 $O(n)$ 的时间解决这个问题吗?
1412

1513
示例 1:
1614
```
@@ -196,7 +194,7 @@ class Solution {
196194

197195
### 最后
198196

199-
这是我们「刷穿 LeetCode」系列文章的第 `No.421` 篇,系列开始于 2021/01/01,截止于起始日 LeetCode 上共有 1916 道题目,部分是有锁题,我们将先将所有不带锁的题目刷完
197+
这是我们「刷穿 LeetCode」系列文章的第 `No.421` 篇,系列开始于 2021/01/01,截止于起始日 LeetCode 上共有 1916 道题目,部分是有锁题,我们将先把所有不带锁的题目刷完
200198

201199
在这个系列文章里面,除了讲解解题思路以外,还会尽可能给出最为简洁的代码。如果涉及通解还会相应的代码模板。
202200

0 commit comments

Comments
 (0)