Skip to content

Commit 1bf54b3

Browse files
committed
remove br tag
1 parent 1b73952 commit 1bf54b3

File tree

66 files changed

+95
-84
lines changed

Some content is hidden

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

66 files changed

+95
-84
lines changed

docs/0303-range-sum-query-immutable.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ https://leetcode.com/problems/range-sum-query-immutable/[LeetCode - Range Sum Qu
44

55
Given an integer array _nums_, find the sum of the elements between indices _i_ and _j_ (_i__j_), inclusive.
66

7-
*Example:*<br>
7+
*Example:*
88
[subs="verbatim,quotes,macros"]
99
----
1010
Given nums = [-2, 0, 3, -5, 2, -1]
@@ -15,7 +15,7 @@ sumRange(0, 5) -> -3
1515
----
1616

1717

18-
*Note:*<br>
18+
*Note:*
1919

2020
. You may assume that the array does not change.
2121
. There are many calls to _sumRange_ function.

docs/0304-range-sum-query-2d-immutable.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ image::https://leetcode.com/static/images/courses/range_sum_query_2d.png[]
1111
[.small]#The above rectangle (with the red border) is defined by (row1, col1) = *(2, 1)* and (row2, col2) = *(4, 3)*, which contains sum = *8*.#
1212
1313
14-
*Example:*<br>
14+
*Example:*
1515
[subs="verbatim,quotes,macros"]
1616
----
1717
Given matrix = [
@@ -28,7 +28,7 @@ sumRegion(1, 2, 2, 4) -> 12
2828
----
2929
3030
31-
*Note:*<br>
31+
*Note:*
3232
3333
. You may assume that the matrix does not change.
3434
. There are many calls to _sumRegion_ function.

docs/0378-kth-smallest-element-in-a-sorted-matrix.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ return 13.
2424
----
2525

2626

27-
*Note: *<br>
27+
*Note: *
2828
You may assume k is always valid, 1 ≤ k ≤ n^2^.

docs/0401-binary-watch.adoc

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Given a non-negative integer _n_ which represents the number of LEDs that are cu
1414
*Example:*
1515
[subs="verbatim,quotes,macros"]
1616
----
17-
Input: n = 1<br>Return: ["1:00", "2:00", "4:00", "8:00", "0:01", "0:02", "0:04", "0:08", "0:16", "0:32"]
17+
Input: n = 1
18+
Return: ["1:00", "2:00", "4:00", "8:00", "0:01", "0:02", "0:04", "0:08", "0:16", "0:32"]
1819
----
1920

2021

docs/0419-battleships-in-a-board.adoc

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,6 @@ XXXX
3232
----
3333
This is an invalid board that you will not receive - as battleships will always have a cell separating between them.
3434

35-
*Follow up:*<br>Could you do it in *one-pass*, using only *O(1) extra memory* and *without modifying* the value of the board?
35+
*Follow up:*
36+
37+
Could you do it in *one-pass*, using only *O(1) extra memory* and *without modifying* the value of the board?

docs/0472-concatenated-words.adoc

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ A concatenated word is defined as a string that is comprised entirely of at leas
1414
1515
*Output:* ["catsdogcats","dogcatsdog","ratcatdogcat"]
1616
17-
*Explanation:* "catsdogcats" can be concatenated by "cats", "dog" and "cats"; <br> "dogcatsdog" can be concatenated by "dog", "cats" and "dog"; <br>"ratcatdogcat" can be concatenated by "rat", "cat", "dog" and "cat".
17+
*Explanation:* "catsdogcats" can be concatenated by "cats", "dog" and "cats";
18+
"dogcatsdog" can be concatenated by "dog", "cats" and "dog";
19+
"ratcatdogcat" can be concatenated by "rat", "cat", "dog" and "cat".
1820
----
1921

2022

21-
*Note:*<br>
23+
*Note:*
2224

2325
. The number of elements of the given array will not exceed `10,000 `
2426
. The length sum of elements in the given array will not exceed `600,000`.

docs/0473-matchsticks-to-square.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Remember the story of Little Match Girl? By now, you know exactly what matchstic
3030
----
3131

3232

33-
*Note:*<br>
33+
*Note:*
3434

3535
. The length sum of the given matchsticks is in the range of `0` to `10^9`.
3636
. The length of the given matchstick array will not exceed `15`.

docs/0476-number-complement.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ https://leetcode.com/problems/number-complement/[LeetCode - Number Complement]
44

55
Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation.
66

7-
*Note:*<br>
7+
*Note:*
88

99
. The given integer is guaranteed to fit within the range of a 32-bit signed integer.
1010
. You could assume no leading zero bit in the integer’s binary representation.

docs/0477-total-hamming-distance.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ HammingDistance(4, 14) + HammingDistance(4, 2) + HammingDistance(14, 2) = 2 + 2
2222
----
2323

2424

25-
*Note:*<br>
25+
*Note:*
2626

2727
. Elements of the given array are in the range of `0 ` to `10^9`
2828
. Length of the array will not exceed `10^4`.

docs/0482-license-key-formatting.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Note that the two extra dashes are not needed and can be removed.
3636
----
3737

3838

39-
*Note:*<br>
39+
*Note:*
4040

4141
. The length of string S will not exceed 12,000, and K is a positive integer.
4242
. String S consists only of alphanumerical characters (a-z and/or A-Z and/or 0-9) and dashes(-).

docs/0486-predict-the-winner.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Finally, player 1 has more score (234) than player 2 (12), so you need to return
3030
----
3131

3232

33-
*Note:*<br>
33+
*Note:*
3434

3535
. 1 <= length of the array <= 20.
3636
. Any scores in the given array are non-negative integers and will not exceed 10,000,000.

docs/0492-construct-the-rectangle.adoc

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@
33
https://leetcode.com/problems/construct-the-rectangle/[LeetCode - Construct the Rectangle]
44

55

6-
For a web developer, it is very important to know how to design a web page's size. So, given a specific rectangular web page’s area, your job by now is to design a rectangular web page, whose length L and width W satisfy the following requirements:[subs="verbatim,quotes,macros"]
6+
For a web developer, it is very important to know how to design a web page's size. So, given a specific rectangular web page’s area, your job by now is to design a rectangular web page, whose length L and width W satisfy the following requirements:
7+
8+
[subs="verbatim,quotes,macros"]
79
----
810
1. The area of the rectangular web page you designed must equal to the given target area.
9-
<br>2. The width W should not be larger than the length L, which means L >= W.
10-
<br>3. The difference between length L and width W should be as small as possible.
11+
2. The width W should not be larger than the length L, which means L >= W.
12+
3. The difference between length L and width W should be as small as possible.
1113
----
14+
1215
You need to output the length L and the width W of the web page you designed in sequence.
1316

1417

@@ -25,7 +28,7 @@ But according to requirement 2, [1,4] is illegal; according to requirement 3, [
2528
----
2629

2730

28-
*Note:*<br>
31+
*Note:*
2932

3033
. The given area won't exceed 10,000,000 and is a positive integer
3134
. The web page's width and length you designed must be positive integers.

docs/0493-reverse-pairs.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You need to return the number of important reverse pairs in the given array.
2020
*Output*: 3
2121
----
2222

23-
*Note:*<br>
23+
*Note:*
2424

2525
. The length of the given array will not exceed `50,000`.
2626
. All the numbers in the input array are in the range of 32-bit integer.

docs/0494-target-sum.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ There are 5 ways to assign symbols to make the sum of nums be target 3.
6868
----
6969

7070

71-
*Note:*<br>
71+
*Note:*
7272

7373
. The length of the given array is positive and will not exceed 20.
7474
. The sum of elements in the given array will not exceed 1000.

docs/0496-next-greater-element-i.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The Next Greater Number of a number *x* in `nums1` is the first greater number t
3838
3939
4040
41-
*Note:*<br>
41+
*Note:*
4242
4343
. All elements in `nums1` and `nums2` are unique.
4444
. The length of both `nums1` and `nums2` would not exceed 1000.

docs/0502-ipo.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To sum up, pick a list of at most *k* distinct projects from given projects to m
3131
----
3232

3333

34-
*Note:*<br>
34+
*Note:*
3535

3636
. You may assume all numbers in the input are non-negative integers.
3737
. The length of Profits array and Capital array will not exceed 50,000.

docs/0506-relative-ranks.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Given scores of *N* athletes, find their relative ranks and the people with the
1616
----
1717

1818

19-
*Note:*<br>
19+
*Note:*
2020

2121
. N is a positive integer and won't exceed 10,000.
2222
. All the scores of athletes are guaranteed to be unique.

docs/0508-most-frequent-subtree-sum.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://leetcode.com/problems/most-frequent-subtree-sum/[LeetCode - Most Frequen
66
Given the root of a tree, you are asked to find the most frequent subtree sum. The subtree sum of a node is defined as the sum of all the node values formed by the subtree rooted at that node (including the node itself). So what is the most frequent subtree sum value? If there is a tie, return all the values with the highest frequency in any order.
77

88

9-
*Examples 1*<br>
9+
*Examples 1*
1010
Input:
1111
[subs="verbatim,quotes,macros"]
1212
----
@@ -17,7 +17,7 @@ Input:
1717
return [2, -3, 4], since all the values happen only once, return all of them in any order.
1818
1919
20-
*Examples 2*<br>
20+
*Examples 2*
2121
Input:
2222
[subs="verbatim,quotes,macros"]
2323
----

docs/0513-find-bottom-left-tree-value.adoc

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Output:
2222
----
2323

2424

25-
* Example 2: *<br>
25+
*Example 2:*
26+
2627
[subs="verbatim,quotes,macros"]
2728
----
2829
Input:

docs/0516-longest-palindromic-subsequence.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://leetcode.com/problems/longest-palindromic-subsequence/[LeetCode - Longes
66
Given a string s, find the longest palindromic subsequence's length in s. You may assume that the maximum length of s is 1000.
77

88

9-
*Example 1:*<br>
9+
*Example 1:*
1010
Input:
1111
[subs="verbatim,quotes,macros"]
1212
----
@@ -20,7 +20,7 @@ Output:
2020
One possible longest palindromic subsequence is "bbbb".
2121

2222

23-
*Example 2:*<br>
23+
*Example 2:*
2424
Input:
2525
[subs="verbatim,quotes,macros"]
2626
----

docs/0517-super-washing-machines.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ It's impossible to make all the three washing machines have the same number of d
4747

4848

4949

50-
*Note:*<br>
50+
*Note:*
5151

5252
. The range of n is [1, 10000].
5353
. The range of dresses number in a super washing machine is [0, 1e5].

docs/0524-longest-word-in-dictionary-through-deleting.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ https://leetcode.com/problems/longest-word-in-dictionary-through-deleting/[LeetC
55

66
Given a string and a string dictionary, find the longest string in the dictionary that can be formed by deleting some characters of the given string. If there are more than one possible results, return the longest word with the smallest lexicographical order. If there is no possible result, return the empty string.
77

8-
*Example 1:*<br>
8+
*Example 1:*
99
[subs="verbatim,quotes,macros"]
1010
----
1111
*Input:*
@@ -17,7 +17,7 @@ s = "abpcplea", d = ["ale","apple","monkey","plea"]
1717

1818

1919

20-
*Example 2:*<br>
20+
*Example 2:*
2121
[subs="verbatim,quotes,macros"]
2222
----
2323
*Input:*
@@ -28,7 +28,7 @@ s = "abpcplea", d = ["a","b","c"]
2828
----
2929

3030

31-
*Note:*<br>
31+
*Note:*
3232

3333
. All the strings in the input will only contain lower-case letters.
3434
. The size of the dictionary won't exceed 1,000.

docs/0539-minimum-time-difference.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Given a list of 24-hour clock time points in "Hour:Minutes" format, find the min
1414
----
1515

1616

17-
*Note:*<br>
17+
*Note:*
1818

1919
. The number of time points in the given list is at least 2 and won't exceed 20000.
2020
. The input time is legal and ranges from 00:00 to 23:59.

docs/0546-remove-boxes.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You may experience several rounds to remove boxes until there is no box left. Ea
1111
Find the maximum points you can get.
1212

1313

14-
*Example 1:*<br>
14+
*Example 1:*
1515
Input:
1616
[subs="verbatim,quotes,macros"]
1717
----

docs/0547-friend-circles.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Given a *N*N* matrix *M* representing the friend relationship between students i
3939

4040

4141

42-
*Note:*<br>
42+
*Note:*
4343

4444
. N is in range [1,200].
4545
. M[i][i] = 1 for all students.

docs/0561-array-partition-i.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Given an array of *2n* integers, your task is to group these integers into *n* p
1818
----
1919

2020

21-
*Note:*<br>
21+
*Note:*
2222

2323
. *n* is a positive integer, which is in the range of [1, 10000].
2424
. All the integers in the array will be in the range of [-10000, 10000].

docs/0564-find-the-closest-palindrome.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The 'closest' is defined as absolute difference minimized between two integers.
1616
----
1717

1818

19-
*Note:*<br>
19+
*Note:*
2020

2121
. The input *n* is a positive integer represented by string, whose length will not exceed 18.
2222
. If there is a tie, return the smaller one as answer.

docs/0566-reshape-the-matrix.adoc

+5-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ nums =
2727
r = 1, c = 4
2828
*Output:*
2929
[[1,2,3,4]]
30-
*Explanation:*<br>The *row-traversing* of nums is [1,2,3,4]. The new reshaped matrix is a 1 * 4 matrix, fill it row by row by using the previous list.
30+
*Explanation:*
31+
The *row-traversing* of nums is [1,2,3,4]. The new reshaped matrix is a 1 * 4 matrix, fill it row by row by using the previous list.
3132
----
3233

3334

@@ -44,11 +45,12 @@ r = 2, c = 4
4445
*Output:*
4546
[[1,2],
4647
[3,4]]
47-
*Explanation:*<br>There is no way to reshape a 2 * 2 matrix to a 2 * 4 matrix. So output the original matrix.
48+
*Explanation:*
49+
There is no way to reshape a 2 * 2 matrix to a 2 * 4 matrix. So output the original matrix.
4850
----
4951

5052

51-
*Note:*<br>
53+
*Note:*
5254

5355
. The height and width of the given matrix is in range [1, 100].
5456
. The given r and c are all positive.

docs/0572-subtree-of-another-tree.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ https://leetcode.com/problems/subtree-of-another-tree/[LeetCode - Subtree of Ano
66
Given two non-empty binary trees *s* and *t*, check whether tree *t* has exactly the same structure and node values with a subtree of *s*. A subtree of *s* is a tree consists of a node in *s* and all of this node's descendants. The tree *s* could also be considered as a subtree of itself.
77

88

9-
*Example 1:*<br>
9+
*Example 1:*
1010

1111
Given tree s:
1212
[subs="verbatim,quotes,macros"]
@@ -27,7 +27,7 @@ Given tree t:
2727
Return *true*, because t has the same structure and node values with a subtree of s.
2828
2929
30-
*Example 2:*<br>
30+
*Example 2:*
3131
3232
Given tree s:
3333
[subs="verbatim,quotes,macros"]

docs/0581-shortest-unsorted-continuous-subarray.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ You need to find the *shortest* such subarray and output its length.
4747
----
4848

4949

50-
*Note:*<br>
50+
*Note:*
5151

5252
. Then length of the input array is in range [1, 10,000].
5353
. The input array may contain duplicates, so ascending order here means *<=*.

docs/0583-delete-operation-for-two-strings.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Given two words _word1_ and _word2_, find the minimum number of steps required t
1717
----
1818

1919

20-
*Note:*<br>
20+
*Note:*
2121

2222
. The length of given words won't exceed 500.
2323
. Characters in given words can only be lower-case letters.

0 commit comments

Comments
 (0)