Skip to content

Commit d84a8c7

Browse files
committed
minor fixes
Signed-off-by: rajput-hemant <hemant.rajput_cs20@gla.ac.in>
1 parent 837e2da commit d84a8c7

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<!-- title/logo -->
1010

1111
<picture>
12-
<source media="(prefers-color-scheme: light)" srcset="https://telegra.ph/file/50295ab5d953128d8e698.png">
13-
<source media="(prefers-color-scheme: dark)" srcset="https://telegra.ph/file/7ea4a5e6d225c0fe19686.png">
12+
<source media="(prefers-color-scheme: light)" srcset="docs/assets/light.png">
13+
<source media="(prefers-color-scheme: dark)" srcset="docs/assets/dark.png">
1414
<img alt="Leetcode">
1515
</picture>
1616

TOPICWISE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<!-- title/logo -->
44

55
<picture>
6-
<source media="(prefers-color-scheme: light)" srcset="https://telegra.ph/file/50295ab5d953128d8e698.png">
7-
<source media="(prefers-color-scheme: dark)" srcset="https://telegra.ph/file/7ea4a5e6d225c0fe19686.png">
6+
<source media="(prefers-color-scheme: light)" srcset="docs/assets/light.png">
7+
<source media="(prefers-color-scheme: dark)" srcset="docs/assets/dark.png">
88
<img alt="Leetcode">
99
</picture>
1010

src/0101-0200/144 - Binary Tree Preorder Traversal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Follow up: Recursive solution is trivial, could you do it iteratively?
3838

3939
## Solution:
4040

41-
### [_Java_]()
41+
### [_Java_](./BinaryTreePreorderTraversal.java)
4242

4343
```java
4444
List<Integer> list = new ArrayList<Integer>();

src/0301-0400/344 - Reverse String/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Output: ["h","a","n","n","a","H"]
2424

2525
### Constraints:
2626

27-
- 1 <= s.length <= 10<sup>5<sup>
27+
- 1 <= s.length <= 10<sup>5</sup>
2828
- s[i] is a printable ascii character.
2929

3030
## Solutions:

src/0701-0800/704 - Binary Search/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ You must write an algorithm with `O(log n)` runtime complexity.
1010

1111
### Example 1:
1212

13-
```Input: nums = [-1,0,3,5,9,12], target = 9
13+
```
14+
Input: nums = [-1,0,3,5,9,12], target = 9
1415
Output: 4
1516
Explanation: 9 exists in nums and its index is 4
1617
```

src/0801-0900/876 - Middle of the Linked List/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Explanation: Since the list has two middle nodes with values 3 and 4, we return
3535

3636
## Solution:
3737

38-
### [_Java_]()
38+
### [_Java_](./MiddleOfTheLinkedList.java)
3939

4040
```java
4141
public ListNode middleNode(ListNode head) {

src/0801-0900/888 - Fair Candy Swap/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Problem Statement:
66

7-
Alice and Bob have a different total number of candies. You are given two integer arrays `aliceSizes` and `bobSizes` where `aliceSizes[i]` is the number of candies of the <code>i<sup>th</sup><code> box of candy that Alice has and bobSizes[j] is the number of candies of the <code>j<sup>th</sup></code> box of candy that Bob has.
7+
Alice and Bob have a different total number of candies. You are given two integer arrays `aliceSizes` and `bobSizes` where `aliceSizes[i]` is the number of candies of the <code>i<sup>th</sup></code> box of candy that Alice has and bobSizes[j] is the number of candies of the <code>j<sup>th</sup></code> box of candy that Bob has.
88

99
Since they are friends, they would like to exchange one candy box each so that after the exchange, they both have the same total amount of candy. The total amount of candy a person has is the sum of the number of candies in each box they have.
1010

src/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<div align="center">
22

33
<picture>
4-
<source media="(prefers-color-scheme: light)" srcset="https://telegra.ph/file/50295ab5d953128d8e698.png">
5-
<source media="(prefers-color-scheme: dark)" srcset="https://telegra.ph/file/7ea4a5e6d225c0fe19686.png">
4+
<source media="(prefers-color-scheme: light)" srcset="../docs/assets/light.png">
5+
<source media="(prefers-color-scheme: dark)" srcset="../docs/assets/dark.png">
66
<img alt="Leetcode">
77
</picture>
88

0 commit comments

Comments
 (0)