Skip to content

Commit a0107b7

Browse files
updating docs
1 parent d2ad2c3 commit a0107b7

9 files changed

+511
-3
lines changed

docs/.vitepress/Sidebar.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ export default Sidebar = [
215215
text: "172 - Factorial Trailing Zeroes",
216216
link: "/solution/0101-0200/172 - Factorial Trailing Zeroes.md",
217217
},
218+
{
219+
text: "190 - Reverse Bits",
220+
link: "/solution/0101-0200/190 - Reverse Bits.md",
221+
},
218222
{
219223
text: "191 - Number of 1 Bits",
220224
link: "/solution/0101-0200/191 - Number of 1 Bits.md",
@@ -381,6 +385,10 @@ export default Sidebar = [
381385
text: "349 - Intersection of Two Arrays",
382386
link: "/solution/0301-0400/349 - Intersection of Two Arrays.md",
383387
},
388+
{
389+
text: "350 - Intersection of Two Arrays II",
390+
link: "/solution/0301-0400/350 - Intersection of Two Arrays II.md",
391+
},
384392
{
385393
text: "367 - Valid Perfect Square",
386394
link: "/solution/0301-0400/367 - Valid Perfect Square.md",
@@ -389,6 +397,14 @@ export default Sidebar = [
389397
text: "369 - Plus One Linked List",
390398
link: "/solution/0301-0400/369 - Plus One Linked List.md",
391399
},
400+
{
401+
text: "374 - Guess Number Higher or Lower",
402+
link: "/solution/0301-0400/374 - Guess Number Higher or Lower.md",
403+
},
404+
{
405+
text: "383 - Ransom Note",
406+
link: "/solution/0301-0400/383 - Ransom Note.md",
407+
},
392408
{
393409
text: "387 - First Unique Character in a String",
394410
link: "/solution/0301-0400/387 - First Unique Character in a String.md",
@@ -397,6 +413,10 @@ export default Sidebar = [
397413
text: "389 - Find the Difference",
398414
link: "/solution/0301-0400/389 - Find the Difference.md",
399415
},
416+
{
417+
text: "392 - Is Subsequence",
418+
link: "/solution/0301-0400/392 - Is Subsequence.md",
419+
},
400420
],
401421
},
402422
{

docs/SERIALWISE.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
| **0160** | [Intersection of Two Linked Lists][160] | Hash Table, Linked List, 2P | ![][easy] | |
6666
| **0169** | [Majority Element][169] | Array, Hash Table, Divide and Conquer, Sorting, Counting | ![][easy] | |
6767
| **0172** | [Factorial Trailing Zeroes][172] | Math | ![][medium] | |
68+
| **0190** | [Reverse Bits][190] | Divide and Conquer, Bit Manip | ![][easy] | |
6869
| **0191** | [Number of 1 Bits][191] | Divide & Conquer, Bit Manipulation | ![][easy] | |
6970
| **0193** | [Valid Phone Numbers][193] | Shell | ![][easy] | |
7071
| **0195** | [Tenth Line][195] | Shell | ![][easy] | |
@@ -103,10 +104,14 @@
103104
| **0344** | [Reverse String][344] | Two Pointers, String, Recursion | ![][easy] | |
104105
| **0345** | [Reverse Vowels of a String][345] | Two Pointers, String | ![][easy] | |
105106
| **0349** | [Intersection of Two Arrays][349] | Array, Hash Table, Two Pointers, Binary Search, Sorting | ![][easy] | |
107+
| **0350** | [Intersection of Two Arrays II][350] | Array, Hash Table, Two Pointers, Binary Search, Sorting | ![][easy] | |
106108
| **0367** | [Valid Perfect Square][367] | Math, Binary Search | ![][easy] | |
107109
| **0369** | [Plus One Linked List][369] | Linked List, Math | ![][medium] | 🔒 |
110+
| **0374** | [Guess Number Higher or Lower][374] | Binary Search, Interactive | ![][easy] | |
111+
| **0383** | [Ransom Note][383] | Hash Table, String, Counting | ![][easy] | |
108112
| **0387** | [First Unique Character in a String][387] | Hash Table, String, Queue, Counting | ![][easy] | |
109113
| **0389** | [Find the Difference][389] | Hash Table, String, Bit Manipulation, Sorting | ![][easy] | |
114+
| **0392** | [Is Subsequence][392] | Two Pointers, String, DP | ![][easy] | |
110115
| **0438** | [Find All Anagrams in a String][438] | Hash Table, String, Sliding Window | ![][medium] | |
111116
| **0442** | [Find All Duplicates][442] | Array, Hash Table | ![][medium] | |
112117
| **0445** | [Add Two Numbers II][445] | Linked List, Math, Stack | ![][medium] | |
@@ -199,6 +204,7 @@
199204
[160]: ./solution/0101-0200/160%20-%20Intersection%20of%20Two%20Linked%20Lists.md
200205
[169]: ./solution/0101-0200/169%20-%20Majority%20Element.md
201206
[172]: ./solution/0101-0200/172%20-%20Factorial%20Trailing%20Zeroes.md
207+
[190]: ./solution/0101-0200/190%20-%20Reverse%20Bits.md
202208
[191]: ./solution/0101-0200/191%20-%20Number%20of%201%20Bits.md
203209
[193]: ./solution/0101-0200/193%20-%20Valid%20Phone%20Numbers.md
204210
[195]: ./solution/0101-0200/195%20-%20Tenth%20Line.md
@@ -239,11 +245,15 @@
239245
[344]: ./solution/0301-0400/344%20-%20Reverse%20String.md
240246
[345]: ./solution/0301-0400/345%20-%20Reverse%20Vowels%20of%20a%20String.md
241247
[349]: ./solution/0301-0400/349%20-%20Intersection%20of%20Two%20Arrays.md
248+
[350]: ./solution/0301-0400/350%20-%20Intersection%20of%20Two%20Arrays%20II.md
242249
[367]: ./solution/0301-0400/367%20-%20Valid%20Perfect%20Square.md
243250
[369]: ./solution/0301-0400/369%20-%20Plus%20One%20Linked%20List.md
251+
[374]: ./solution/0301-0400/374%20-%20Guess%20Number%20Higher%20or%20Lower.md
252+
[383]: ./solution/0301-0400/383%20-%20Ransom%20Note.md
244253
[387]: ./solution/0301-0400/387%20-%20First%20Unique%20Character%20in%20a%20String.md
245254
[387]: ./solution/0301-0400/387%20-%20First%20Unique%20Character%20in%20a%20String.md
246255
[389]: ./solution/0301-0400/389%20-%20Find%20the%20Difference.md
256+
[392]: ./solution/0301-0400/392%20-%20Is%20Subsequence.md
247257
[438]: ./solution/0401-0500/438%20-%20Find%20All%20Anagrams%20in%20a%20String.md
248258
[442]: ./solution/0401-0500/442%20-%20Find%20All%20Duplicates%20in%20an%20Array.md
249259
[445]: ./solution/0401-0500/445%20-%20Add%20Two%20Numbers%20II.md

0 commit comments

Comments
 (0)