Skip to content

Commit f9781bf

Browse files
committed
docs: delete lc problem: No.0190 duplicate example
No.0190.Reverse Bits
1 parent 1226050 commit f9781bf

File tree

1 file changed

+2
-17
lines changed
  • solution/0100-0199/0190.Reverse Bits

1 file changed

+2
-17
lines changed

solution/0100-0199/0190.Reverse Bits/README.md

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,6 @@
2626

2727
<p><strong>示例 1:</strong></p>
2828

29-
<pre>
30-
<strong>输入:</strong> 00000010100101000001111010011100
31-
<strong>输出:</strong> 00111001011110000010100101000000
32-
<strong>解释: </strong>输入的二进制串 <strong>00000010100101000001111010011100 </strong>表示无符号整数<strong> 43261596</strong><strong>,
33-
</strong> 因此返回 964176192,其二进制表示形式为 <strong>00111001011110000010100101000000</strong>。</pre>
34-
35-
<p><strong>示例 2:</strong></p>
36-
37-
<pre>
38-
<strong>输入:</strong>11111111111111111111111111111101
39-
<strong>输出:</strong>10111111111111111111111111111111
40-
<strong>解释:</strong>输入的二进制串 <strong>11111111111111111111111111111101</strong> 表示无符号整数 4294967293,
41-
  因此返回 3221225471 其二进制表示形式为 <strong>10111111111111111111111111111111 。</strong></pre>
42-
43-
<p><strong>示例 1:</strong></p>
44-
4529
<pre>
4630
<strong>输入:</strong>n = 00000010100101000001111010011100
4731
<strong>输出:</strong>964176192 (00111001011110000010100101000000)
@@ -54,7 +38,8 @@
5438
<strong>输入:</strong>n = 11111111111111111111111111111101
5539
<strong>输出:</strong>3221225471 (10111111111111111111111111111111)
5640
<strong>解释:</strong>输入的二进制串 <strong>11111111111111111111111111111101</strong> 表示无符号整数 4294967293,
57-
  因此返回 3221225471 其二进制表示形式为 <strong>10111111111111111111111111111111 。</strong></pre>
41+
  因此返回 3221225471 其二进制表示形式为 <strong>10111111111111111111111111111111 。</strong>
42+
</pre>
5843

5944
<p> </p>
6045

0 commit comments

Comments
 (0)