Skip to content

Commit 03b90a5

Browse files
updating docs
1 parent 59c8850 commit 03b90a5

File tree

8 files changed

+424
-35
lines changed

8 files changed

+424
-35
lines changed

docs/.vitepress/Sidebar.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,14 @@ export default Sidebar = [
171171
text: "118 - Pascals Triangle",
172172
link: "/solution/0101-0200/118 - Pascals Triangle.md",
173173
},
174+
{
175+
text: "119 - Pascals Triangle II",
176+
link: "/solution/0101-0200/119 - Pascals Triangle II.md",
177+
},
178+
{
179+
text: "121 - Best Time to Buy and Sell Stock",
180+
link: "/solution/0101-0200/121 - Best Time to Buy and Sell Stock.md",
181+
},
174182
{
175183
text: "122 - Best Time to Buy and Sell Stock II",
176184
link: "/solution/0101-0200/122 - Best Time to Buy and Sell Stock II.md",
@@ -298,6 +306,14 @@ export default Sidebar = [
298306
text: "242 - Valid Anagram",
299307
link: "/solution/0201-0300/242 - Valid Anagram.md",
300308
},
309+
{
310+
text: "257 - Binary Tree Paths",
311+
link: "/solution/0201-0300/257 - Binary Tree Paths.md",
312+
},
313+
{
314+
text: "258 - Add Digits",
315+
link: "/solution/0201-0300/258 - Add Digits.md",
316+
},
301317
{
302318
text: "278 - First Bad Version",
303319
link: "/solution/0201-0300/278 - First Bad Version.md",

docs/SERIALWISE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
| **0111** | [Minimum Depth of Binary Tree][111] | Tree, Depth First Search, Breadth First Search, Binary Tree | ![][easy] | |
5555
| **0112** | [Path Sum][112] | Tree, Depth-First Search, Breadth-First Search, Binary Tree | ![][easy] | |
5656
| **0118** | [Pascal's Triangle][118] | Array, DP | ![][easy] | |
57+
| **0119** | [Pascal's Triangle II][119] | Array, DP | ![][easy] | |
58+
| **0121** | [Best Time to Buy and Sell Stock][121] | Array, DP | ![][easy] | |
5759
| **0122** | [Best Time to Buy and Sell Stock II][122] | Array, Dynamic Programming, Greedy | ![][medium] | |
5860
| **0125** | [Valid Palindrome][125] | Two Pointers, String | ![][easy] | |
5961
| **0136** | [Single Number][136] | Array, Bit Manip | ![][easy] | |
@@ -84,6 +86,8 @@
8486
| **0234** | [Palindrome Linked List][234] | Linked List, Two Pointers, Stack, Recursion | ![][easy] | |
8587
| **0236** | [Lowest Common Ancestor of a Binary Tree][236] | Tree, Depth-First Search, Binary Tree | ![][medium] | |
8688
| **0242** | [Valid Anagram][242] | Hash Table, String, Sorting | ![][easy] | |
89+
| **0257** | [Binary Tree Paths][257] | String, Backtracking, Tree, Depth-First Search, Binary Tree | ![][easy] | |
90+
| **0258** | [Add Digits][258] | Math, Simulation, Number Theory | ![][easy] | |
8791
| **0278** | [First Bad Version][278] | Binary Search, Interactive | ![][easy] | |
8892
| **0283** | [Move Zeroes][283] | Array, Two Pointers | ![][easy] | |
8993
| **0300** | [Longest Increasing Subsequence][300] | Array, Binary Search, DP | ![][medium] | |
@@ -173,6 +177,8 @@
173177
[111]: ./solution/0101-0200/111%20-%20Minimum%20Depth%20of%20Binary%20Tree.md
174178
[112]: ./solution/0101-0200/112%20-%20Path%20Sum.md
175179
[118]: ./solution/0101-0200/118%20-%20Pascals%20Triangle.md
180+
[119]: ./solution/0101-0200/119%20-%20Pascals%20Triangle%20II.md
181+
[121]: ./solution/0101-0200/121%20-%20Best%20Time%20to%20Buy%20and%20Sell%20Stock.md
176182
[122]: ./solution/0101-0200/122%20-%20Best%20Time%20to%20Buy%20and%20Sell%20Stock%20II.md
177183
[125]: ./solution/0101-0200/125%20-%20Valid%20Palindrome.md
178184
[134]: ./solution/0101-0200/134%20-%20Gas%20Station.md
@@ -206,6 +212,8 @@
206212
[236]: ./solution/0201-0300/236%20-%20Lowest%20Common%20Ancestor%20of%20a%20Binary%20Tree.md
207213
[239]: ./solution/0201-0300/239%20-%20Sliding%20Window%20Maximum.md
208214
[242]: ./solution/0201-0300/242%20-%20Valid%20Anagram.md
215+
[257]: ./solution/0201-0300/257%20-%20Binary%20Tree%20Paths.md
216+
[258]: ./solution/0201-0300/258%20-%20Add%20Digits.md
209217
[278]: ./solution/0201-0300/278%20-%20First%20Bad%20Version.md
210218
[283]: ./solution/0201-0300/283%20-%20Move%20Zeroes.md
211219
[300]: ./solution/0201-0300/300%20-%20Longest%20Increasing%20Subsequence.md

0 commit comments

Comments
 (0)