Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit a5bfc59

Browse files
updating docs
1 parent 2824dc0 commit a5bfc59

File tree

7 files changed

+453
-71
lines changed

7 files changed

+453
-71
lines changed

‎docs/.vitepress/Sidebar.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,14 @@ export default Sidebar = [
314314
text: "258 - Add Digits",
315315
link: "/solution/0201-0300/258 - Add Digits.md",
316316
},
317+
{
318+
text: "263 - Ugly Number",
319+
link: "/solution/0201-0300/263 - Ugly Number.md",
320+
},
321+
{
322+
text: "268 - Missing Number",
323+
link: "/solution/0201-0300/268 - Missing Number.md",
324+
},
317325
{
318326
text: "278 - First Bad Version",
319327
link: "/solution/0201-0300/278 - First Bad Version.md",
@@ -322,6 +330,10 @@ export default Sidebar = [
322330
text: "283 - Move Zeroes",
323331
link: "/solution/0201-0300/283 - Move Zeroes.md",
324332
},
333+
{
334+
text: "290 - Word Pattern",
335+
link: "/solution/0201-0300/290 - Word Pattern.md",
336+
},
325337
{
326338
text: "300 - Longest Increasing Subsequence",
327339
link: "/solution/0201-0300/300 - Longest Increasing Subsequence.md",
@@ -403,6 +415,10 @@ export default Sidebar = [
403415
text: "530 - Minimum Absolute Difference in BST",
404416
link: "/solution/0501-0600/530 - Minimum Absolute Difference in BST.md",
405417
},
418+
{
419+
text: "540 - Single Element in a Sorted Array",
420+
link: "/solution/0501-0600/540 - Single Element in a Sorted Array.md",
421+
},
406422
{
407423
text: "541 - Reverse String II",
408424
link: "/solution/0501-0600/541 - Reverse String II.md",

‎docs/SERIALWISE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,11 @@
8888
| **0242** | [Valid Anagram][242] | Hash Table, String, Sorting | ![][easy] | |
8989
| **0257** | [Binary Tree Paths][257] | String, Backtracking, Tree, Depth-First Search, Binary Tree | ![][easy] | |
9090
| **0258** | [Add Digits][258] | Math, Simulation, Number Theory | ![][easy] | |
91+
| **0263** | [Ugly Number][263] | Math | ![][easy] | |
92+
| **0268** | [Missing Number][268] | Array, Hash Table, Math, Binary Search, Bit Manipulation, Sorting | ![][easy] | |
9193
| **0278** | [First Bad Version][278] | Binary Search, Interactive | ![][easy] | |
9294
| **0283** | [Move Zeroes][283] | Array, Two Pointers | ![][easy] | |
95+
| **0290** | [Word Pattern][290] | Hash Table, String | ![][easy] | |
9396
| **0300** | [Longest Increasing Subsequence][300] | Array, Binary Search, DP | ![][medium] | |
9497
| **0322** | [Coin Change][322] | Array, Dynamic Programming, BFS | ![][medium] | |
9598
| **0337** | [House Robber III][337] | Dynamic Programming, Tree, Depth First Search, Binary Tree | ![][medium] | |
@@ -105,6 +108,7 @@
105108
| **0516** | [Longest Palindromic Subsequence][516] | String, DP | ![][medium] | |
106109
| **0518** | [Coin Change 2][518] | Array, DP | ![][medium] | |
107110
| **0530** | [Minimum Absolute Difference in BST][530] | Tree, Depth-First Search, Breadth-First Search, Binary Search Tree, Binary Tree | ![][easy] | |
111+
| **0540** | [Single Element in a Sorted Array][540] | Array, BS | ![][medium] | |
108112
| **0541** | [Reverse String II][541] | Two Pointers, String | ![][easy] | |
109113
| **0543** | [Diameter of Binary Tree][543] | Tree, Depth First Search, Binary Tree | ![][easy] | |
110114
| **0653** | [Two Sum IV - Input is a BST][653] | Tree, Depth First Search, Binary Search Tree, Binary Tree | ![][easy] | |
@@ -214,8 +218,11 @@
214218
[242]: ./solution/0201-0300/242%20-%20Valid%20Anagram.md
215219
[257]: ./solution/0201-0300/257%20-%20Binary%20Tree%20Paths.md
216220
[258]: ./solution/0201-0300/258%20-%20Add%20Digits.md
221+
[263]: ./solution/0201-0300/263%20-%20Ugly%20Number.md
222+
[268]: ./solution/0201-0300/268%20-%20Missing%20Number.md
217223
[278]: ./solution/0201-0300/278%20-%20First%20Bad%20Version.md
218224
[283]: ./solution/0201-0300/283%20-%20Move%20Zeroes.md
225+
[290]: ./solution/0201-0300/290%20-%20Word%20Pattern.md
219226
[300]: ./solution/0201-0300/300%20-%20Longest%20Increasing%20Subsequence.md
220227
[322]: ./solution/0301-0400/322%20-%20Coin%20Change.md
221228
[337]: ./solution/0301-0400/337%20-%20House%20Robber%20III.md
@@ -233,6 +240,7 @@
233240
[516]: ./solution/0501-0600/516%20-%20Longest%20Palindromic%20Subsequence.md
234241
[518]: ./solution/0501-0600/518%20-%20Coin%20Change%202.md
235242
[530]: ./solution/0501-0600/530%20-%20Minimum%20Absolute%20Difference%20in%20BST.md
243+
[540]: ./solution/0501-0600/540%20-%20Single%20Element%20in%20a%20Sorted%20Array.md
236244
[541]: ./solution/0501-0600/541%20-%20Reverse%20String%20II.md
237245
[543]: ./solution/0501-0600/543%20-%20Diameter%20of%20Binary%20Tree.md
238246
[653]: ./solution/0601-0700/653%20-%20Two%20Sum%20IV%20-%20Input%20is%20a%20BST.md

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /