Skip to content

Commit 0569c9f

Browse files
committed
替换HTML标签
1 parent 84690e4 commit 0569c9f

File tree

1,489 files changed

+3589
-3589
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,489 files changed

+3589
-3589
lines changed

docs/1341-movie-rating.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Write a solution to:
6363
The result format is in the following example.
6464

6565

66-
<strong class="example">Example 1:*
66+
*Example 1:*
6767

6868
[subs="verbatim,quotes"]
6969
----

docs/1342-number-of-steps-to-reduce-a-number-to-zero.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Given an integer `num`, return _the number of steps to reduce it to zero_.
88
In one step, if the current number is even, you have to divide it by `2`, otherwise, you have to subtract `1` from it.
99

1010

11-
<strong class="example">Example 1:*
11+
*Example 1:*
1212

1313
[subs="verbatim,quotes"]
1414
----
@@ -23,7 +23,7 @@ Step 5) 2 is even; divide by 2 and obtain 1.
2323
Step 6) 1 is odd; subtract 1 and obtain 0.
2424
----
2525

26-
<strong class="example">Example 2:*
26+
*Example 2:*
2727

2828
[subs="verbatim,quotes"]
2929
----
@@ -36,7 +36,7 @@ Step 3) 2 is even; divide by 2 and obtain 1.
3636
Step 4) 1 is odd; subtract 1 and obtain 0.
3737
----
3838

39-
<strong class="example">Example 3:*
39+
*Example 3:*
4040

4141
[subs="verbatim,quotes"]
4242
----

docs/1343-number-of-sub-arrays-of-size-k-and-average-greater-than-or-equal-to-threshold.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Given an array of integers `arr` and two integers `k` and `threshold`, return _the number of sub-arrays of size _`k`_ and average greater than or equal to _`threshold`.
77
88
9-
<strong class="example">Example 1:*
9+
*Example 1:*
1010
1111
[subs="verbatim,quotes"]
1212
----
@@ -15,7 +15,7 @@ Given an array of integers `arr` and two integers `k` and `threshold`, return _t
1515
*Explanation:* Sub-arrays [2,5,5],[5,5,5] and [5,5,8] have averages 4, 5 and 6 respectively. All other sub-arrays of size 3 have averages less than 4 (the threshold).
1616
----
1717
18-
<strong class="example">Example 2:*
18+
*Example 2:*
1919
2020
[subs="verbatim,quotes"]
2121
----

docs/1344-angle-between-hands-of-a-clock.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ Given two numbers, `hour` and `minutes`, return _the smaller angle (in degrees)
88
Answers within `10^-5^` of the actual value will be accepted as correct.
99

1010

11-
<strong class="example">Example 1:*
11+
*Example 1:*
1212
<img alt="" src="https://assets.leetcode.com/uploads/2019/12/26/sample_1_1673.png" style="width: 300px; height: 296px;" />
1313
[subs="verbatim,quotes"]
1414
----
1515
*Input:* hour = 12, minutes = 30
1616
*Output:* 165
1717
----
1818

19-
<strong class="example">Example 2:*
19+
*Example 2:*
2020
<img alt="" src="https://assets.leetcode.com/uploads/2019/12/26/sample_2_1673.png" style="width: 300px; height: 301px;" />
2121
[subs="verbatim,quotes"]
2222
----
2323
*Input:* hour = 3, minutes = 30
2424
*Output:* 75
2525
----
2626

27-
<strong class="example">Example 3:*
27+
*Example 3:*
2828
<img alt="" src="https://assets.leetcode.com/uploads/2019/12/26/sample_3_1673.png" style="width: 300px; height: 301px;" />
2929
[subs="verbatim,quotes"]
3030
----

docs/1345-jump-game-iv.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Return _the minimum number of steps_ to reach the *last index* of the array.
1818
Notice that you can not jump outside of the array at any time.
1919

2020

21-
<strong class="example">Example 1:*
21+
*Example 1:*
2222

2323
[subs="verbatim,quotes"]
2424
----
@@ -27,7 +27,7 @@ Notice that you can not jump outside of the array at any time.
2727
*Explanation:* You need three jumps from index 0 --> 4 --> 3 --> 9. Note that index 9 is the last index of the array.
2828
----
2929

30-
<strong class="example">Example 2:*
30+
*Example 2:*
3131

3232
[subs="verbatim,quotes"]
3333
----
@@ -36,7 +36,7 @@ Notice that you can not jump outside of the array at any time.
3636
*Explanation:* Start index is the last index. You do not need to jump.
3737
----
3838

39-
<strong class="example">Example 3:*
39+
*Example 3:*
4040

4141
[subs="verbatim,quotes"]
4242
----

docs/1346-check-if-n-and-its-double-exist.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Given an array `arr` of integers, check if there exist two indices `i` and `j` s
1212
1313
1414
15-
<strong class="example">Example 1:*
15+
*Example 1:*
1616

1717
[subs="verbatim,quotes"]
1818
----
@@ -21,7 +21,7 @@ Given an array `arr` of integers, check if there exist two indices `i` and `j` s
2121
*Explanation:* For i = 0 and j = 2, arr[i] == 10 == 2 * 5 == 2 * arr[j]
2222
----
2323

24-
<strong class="example">Example 2:*
24+
*Example 2:*
2525

2626
[subs="verbatim,quotes"]
2727
----

docs/1347-minimum-number-of-steps-to-make-two-strings-anagram.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Return _the minimum number of steps_ to make `t` an anagram of `s`.
1010
An *Anagram* of a string is a string that contains the same characters with a different (or the same) ordering.
1111

1212

13-
<strong class="example">Example 1:*
13+
*Example 1:*
1414

1515
[subs="verbatim,quotes"]
1616
----
@@ -19,7 +19,7 @@ An *Anagram* of a string is a string that contains the same characters with a di
1919
*Explanation:* Replace the first 'a' in t with b, t = "bba" which is anagram of s.
2020
----
2121

22-
<strong class="example">Example 2:*
22+
*Example 2:*
2323

2424
[subs="verbatim,quotes"]
2525
----
@@ -28,7 +28,7 @@ An *Anagram* of a string is a string that contains the same characters with a di
2828
*Explanation:* Replace 'p', 'r', 'a', 'i' and 'c' from t with proper characters to make t anagram of s.
2929
----
3030

31-
<strong class="example">Example 3:*
31+
*Example 3:*
3232

3333
[subs="verbatim,quotes"]
3434
----

docs/1348-tweet-counts-per-frequency.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Implement the `TweetCounts` class:
3030
3131
3232
33-
<strong class="example">Example:*
33+
*Example:*
3434

3535
[subs="verbatim,quotes"]
3636
----

docs/1349-maximum-students-taking-exam.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Students can see the answers of those sitting next to the left, right, upper lef
1010
Students must be placed in seats in good condition.
1111
1212
13-
<strong class="example">Example 1:*
13+
*Example 1:*
1414
<img height="200" src="https://assets.leetcode.com/uploads/2020/01/29/image.png" width="339" />
1515
[subs="verbatim,quotes"]
1616
----
@@ -21,7 +21,7 @@ Students must be placed in seats in good condition.
2121
*Explanation:* Teacher can place 4 students in available seats so they don't cheat on the exam.
2222
----
2323

24-
<strong class="example">Example 2:*
24+
*Example 2:*
2525

2626
[subs="verbatim,quotes"]
2727
----
@@ -35,7 +35,7 @@ Students must be placed in seats in good condition.
3535
3636
----
3737

38-
<strong class="example">Example 3:*
38+
*Example 3:*
3939

4040
[subs="verbatim,quotes"]
4141
----

docs/1351-count-negative-numbers-in-a-sorted-matrix.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Given a `m x n` matrix `grid` which is sorted in non-increasing order both row-wise and column-wise, return _the number of *negative* numbers in_ `grid`.
77

88

9-
<strong class="example">Example 1:*
9+
*Example 1:*
1010

1111
[subs="verbatim,quotes"]
1212
----
@@ -15,7 +15,7 @@ Given a `m x n` matrix `grid` which is sorted in non-increasing order both row-w
1515
*Explanation:* There are 8 negatives number in the matrix.
1616
----
1717

18-
<strong class="example">Example 2:*
18+
*Example 2:*
1919

2020
[subs="verbatim,quotes"]
2121
----

0 commit comments

Comments
 (0)