Skip to content

Commit eb48dc2

Browse files
[Auto] Update LeetCode README table
1 parent 54bcf48 commit eb48dc2

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ If you want to use this project follow the steps [here](https://github.com/NineP
277277
| 387. First Unique Character In A String | [🔗](https://leetcode.romitsagu.com/solutions/387/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Hash Table, String, Queue, Counting |
278278
| 389. Find The Difference | [🔗](https://leetcode.romitsagu.com/solutions/389/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Hash Table, String, Bit Manipulation, Sorting |
279279
| 392. Is Subsequence | [🔗](https://leetcode.romitsagu.com/solutions/392/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Two Pointers, String, Dynamic Programming |
280+
| 396. Rotate Function | [🔗](https://leetcode.romitsagu.com/solutions/396/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, Math, Dynamic Programming |
280281
| 397. Integer Replacement | [🔗](https://leetcode.romitsagu.com/solutions/397/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Dynamic Programming, Greedy, Bit Manipulation, Memoization |
281282
| 400. Nth Digit | [🔗](https://leetcode.romitsagu.com/solutions/400/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Math, Binary Search |
282283
| 401. Binary Watch | [🔗](https://leetcode.romitsagu.com/solutions/401/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Backtracking, Bit Manipulation |
@@ -327,6 +328,7 @@ If you want to use this project follow the steps [here](https://github.com/NineP
327328
| 520. Detect Capital | [🔗](https://leetcode.romitsagu.com/solutions/520/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | String |
328329
| 521. Longest Uncommon Subsequence I | [🔗](https://leetcode.romitsagu.com/solutions/521/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | String |
329330
| 530. Minimum Absolute Difference In Bst | [🔗](https://leetcode.romitsagu.com/solutions/530/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Tree, Depth-First Search, Breadth-First Search, Binary Search Tree, Binary Tree |
331+
| 539. Minimum Time Difference | [🔗](https://leetcode.romitsagu.com/solutions/539/) | ![Medium](https://img.shields.io/badge/Difficulty-Medium-f9c851.svg) | Array, Math, String, Sorting |
330332
| 541. Reverse String II | [🔗](https://leetcode.romitsagu.com/solutions/541/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Two Pointers, String |
331333
| 543. Diameter Of Binary Tree | [🔗](https://leetcode.romitsagu.com/solutions/543/) | ![Easy](https://img.shields.io/badge/Difficulty-Easy-4c1.svg) | Tree, Depth-First Search, Binary Tree |
332334
| 546. Remove Boxes | [🔗](https://leetcode.romitsagu.com/solutions/546/) | ![Hard](https://img.shields.io/badge/Difficulty-Hard-e05d44.svg) | Array, Dynamic Programming, Memoization |

Site_README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
273273
| 387. First Unique Character In A String | [🔗](https://leetcode.romitsagu.com/solutions/387/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Hash Table, String, Queue, Counting |
274274
| 389. Find The Difference | [🔗](https://leetcode.romitsagu.com/solutions/389/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Hash Table, String, Bit Manipulation, Sorting |
275275
| 392. Is Subsequence | [🔗](https://leetcode.romitsagu.com/solutions/392/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Two Pointers, String, Dynamic Programming |
276+
| 396. Rotate Function | [🔗](https://leetcode.romitsagu.com/solutions/396/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, Math, Dynamic Programming |
276277
| 397. Integer Replacement | [🔗](https://leetcode.romitsagu.com/solutions/397/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Dynamic Programming, Greedy, Bit Manipulation, Memoization |
277278
| 400. Nth Digit | [🔗](https://leetcode.romitsagu.com/solutions/400/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Math, Binary Search |
278279
| 401. Binary Watch | [🔗](https://leetcode.romitsagu.com/solutions/401/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Backtracking, Bit Manipulation |
@@ -323,6 +324,7 @@ This is a repo to store my leetcode solutions but I went a bit Schizo with it an
323324
| 520. Detect Capital | [🔗](https://leetcode.romitsagu.com/solutions/520/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | String |
324325
| 521. Longest Uncommon Subsequence I | [🔗](https://leetcode.romitsagu.com/solutions/521/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | String |
325326
| 530. Minimum Absolute Difference In Bst | [🔗](https://leetcode.romitsagu.com/solutions/530/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Tree, Depth-First Search, Breadth-First Search, Binary Search Tree, Binary Tree |
327+
| 539. Minimum Time Difference | [🔗](https://leetcode.romitsagu.com/solutions/539/) | <span style="background-color:#ffffff1a; color:#fac31d; padding:2px 6px; border-radius:6px;">Medium</span> | Array, Math, String, Sorting |
326328
| 541. Reverse String II | [🔗](https://leetcode.romitsagu.com/solutions/541/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Two Pointers, String |
327329
| 543. Diameter Of Binary Tree | [🔗](https://leetcode.romitsagu.com/solutions/543/) | <span style="background-color:#ffffff1a; color:#46c6c2; padding:2px 6px; border-radius:6px;">Easy</span> | Tree, Depth-First Search, Binary Tree |
328330
| 546. Remove Boxes | [🔗](https://leetcode.romitsagu.com/solutions/546/) | <span style="background-color:#ffffff1a; color:#f8615c; padding:2px 6px; border-radius:6px;">Hard</span> | Array, Dynamic Programming, Memoization |

0 commit comments

Comments
 (0)