Skip to content

Commit 5e750cb

Browse files
updating docs
1 parent 1af4127 commit 5e750cb

File tree

6 files changed

+365
-52
lines changed

6 files changed

+365
-52
lines changed

docs/.vitepress/Sidebar.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@ export default Sidebar = [
6868
text: "037 - Sudoku Solver",
6969
link: "/solution/0001-0100/037 - Sudoku Solver.md",
7070
},
71+
{
72+
text: "041 - First Missing Positive",
73+
link: "/solution/0001-0100/041 - First Missing Positive.md",
74+
},
75+
{
76+
text: "042 - Trapping Rain Water",
77+
link: "/solution/0001-0100/042 - Trapping Rain Water.md",
78+
},
7179
{
7280
text: "051 - N-Queens",
7381
link: "/solution/0001-0100/051 - N-Queens.md",
@@ -354,6 +362,10 @@ export default Sidebar = [
354362
text: "278 - First Bad Version",
355363
link: "/solution/0201-0300/278 - First Bad Version.md",
356364
},
365+
{
366+
text: "279 - Perfect Squares",
367+
link: "/solution/0201-0300/279 - Perfect Squares.md",
368+
},
357369
{
358370
text: "283 - Move Zeroes",
359371
link: "/solution/0201-0300/283 - Move Zeroes.md",

docs/SERIALWISE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@
3030
| **0028** | [Find the Index of the First Occurrence in a String][28] | Two Pointers, String, String Matching | ![][medium] | |
3131
| **0035** | [Search Insert Position][35] | Array, BS | ![][easy] | |
3232
| **0037** | [Sudoku Solver][37] | Array, Backtracking, Matrix | ![][hard] | |
33+
| **0041** | [First Missing Positive][41] | Array, Hash Table | ![][hard] | |
34+
| **0042** | [Trapping Rain Water][42] | Array, Two Pointers, Dynamic Programming, Stack, Monotonic Stack | ![][hard] | |
3335
| **0051** | [N-Queens][51] | Array, Backtracking | ![][hard] | |
3436
| **0053** | [Maximum Subarray][53] | Array, Divide and Conquer, DP | ![][medium] | |
3537
| **0055** | [Jump Game][55] | Array, Dynamic Programming, Greedy | ![][medium] | |
@@ -98,6 +100,7 @@
98100
| **0263** | [Ugly Number][263] | Math | ![][easy] | |
99101
| **0268** | [Missing Number][268] | Array, Hash Table, Math, Binary Search, Bit Manipulation, Sorting | ![][easy] | |
100102
| **0278** | [First Bad Version][278] | Binary Search, Interactive | ![][easy] | |
103+
| **0279** | [Perfect Squares][279] | Math, Dynamic Programming, Breadth-First Search | ![][medium] | |
101104
| **0283** | [Move Zeroes][283] | Array, Two Pointers | ![][easy] | |
102105
| **0290** | [Word Pattern][290] | Hash Table, String | ![][easy] | |
103106
| **0292** | [Nim Game][292] | Math, Brainteaser, Game Theory | ![][easy] | |
@@ -219,6 +222,8 @@
219222
[28]: ./solution/0001-0100/028%20-%20Find%20the%20Index%20of%20the%20First%20Occurrence%20in%20a%20String.md
220223
[35]: ./solution/0001-0100/035%20-%20Search%20Insert%20Position.md
221224
[37]: ./solution/0001-0100/037%20-%20Sudoku%20Solver.md
225+
[41]: ./solution/0001-0100/041%20-%20First%20Missing%20Positive.md
226+
[42]: ./solution/0001-0100/042%20-%20Trapping%20Rain%20Water.md
222227
[51]: ./solution/0001-0100/051%20-%20N-Queens.md
223228
[53]: ./solution/0001-0100/053%20-%20Maximum%20Subarray.md
224229
[55]: ./solution/0001-0100/055%20-%20Jump%20Game.md
@@ -291,6 +296,7 @@
291296
[263]: ./solution/0201-0300/263%20-%20Ugly%20Number.md
292297
[268]: ./solution/0201-0300/268%20-%20Missing%20Number.md
293298
[278]: ./solution/0201-0300/278%20-%20First%20Bad%20Version.md
299+
[279]: ./solution/0201-0300/279%20-%20Perfect%20Squares.md
294300
[283]: ./solution/0201-0300/283%20-%20Move%20Zeroes.md
295301
[290]: ./solution/0201-0300/290%20-%20Word%20Pattern.md
296302
[292]: ./solution/0201-0300/292%20-%20Nim%20Game.md

0 commit comments

Comments
 (0)