Skip to content

Commit f0d7d27

Browse files
committed
修正错误
1 parent 0b0d6ef commit f0d7d27

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

docs/0136-single-number.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ https://leetcode.cn/problems/single-number/[LeetCode - 136. 只出现一次的
3636
* 除了某个元素只出现一次以外,其余每个元素均出现两次。
3737
3838
39-
[#思路分析]
4039
== 思路分析
4140

4241
只有一个数出现一次,其余数字出现两次,则可以用异或来找出该数。异或两位相异得 `1`,相同得 `0`,则出现两次的数字都全部得 `0`,留下了数字即为只出现一次的数字。

docs/0322-coin-change.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ https://leetcode.cn/problems/coin-change/[LeetCode - 322. 零钱兑换 ^]
3838
* `0 \<= amount \<= 10^4^`
3939
4040
41-
[#思路分析]
4241
== 思路分析
4342

4443
解题思路

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,8 +790,8 @@
790790
<source-highlighter>rouge</source-highlighter>
791791
<rouge-style>github</rouge-style>
792792
<imagesdir>.</imagesdir>
793-
<docinfo>true</docinfo>
794-
<docinfodir>assets/tags</docinfodir>
793+
<!-- <docinfo>true</docinfo>-->
794+
<!-- <docinfodir>assets/tags</docinfodir>-->
795795
<icons>font</icons>
796796
<linkcss>true</linkcss>
797797
<stylesdir>assets/styles</stylesdir>

0 commit comments

Comments
 (0)