@@ -42,6 +42,7 @@ My accepted leetcode solutions to some of the common interview problems.
|
42 | 42 | - [Card Flipping Game](problems/src/array/CardFilipGame.java) (Medium)
|
43 | 43 | - [Employee Free Time](problems/src/array/EmployeeFreeTime.java) (Hard)
|
44 | 44 | - [Best Meeting Point](problems/src/array/BestMeetingPoint.java) (Hard)
|
| 45 | +- [My Calendar III](problems/src/array/MyCalendarThree.java) (Hard) |
45 | 46 |
|
46 | 47 | #### [Backtracking](problems/src/backtracking)
|
47 | 48 |
|
@@ -93,6 +94,8 @@ My accepted leetcode solutions to some of the common interview problems.
|
93 | 94 | - [Cut Off Trees for Golf Event](problems/src/breadth_first_search/CutOffTreesForGolfEvent.java) (Hard)
|
94 | 95 | - [Race Car](problems/src/breadth_first_search/RaceCar.java) (Hard)
|
95 | 96 | - [Bus Routes](problems/src/breadth_first_search/BusRoutes.java) (Hard)
|
| 97 | +- [Sliding Puzzle](problems/src/breadth_first_search/SlidingPuzzle.java) (Hard) |
| 98 | +- [Matrix](problems/src/breadth_first_search/Matrix.java) (Medium) |
96 | 99 |
|
97 | 100 | #### [Depth First Search](problems/src/depth_first_search)
|
98 | 101 |
|
@@ -183,6 +186,8 @@ My accepted leetcode solutions to some of the common interview problems.
|
183 | 186 | - [Largest Sum of Averages](problems/src/dynamic_programming/LargestSumOfAverages.java) (Medium)
|
184 | 187 | - [Minimum Number of Refueling Stops](problems/src/dynamic_programming/MinimumNumberOfRefuelingStops.java) (Hard)
|
185 | 188 | - [Cat and Mouse](problems/src/dynamic_programming/CatAndMouse.java) (Hard)
|
| 189 | +- [Stone Game](problems/src/dynamic_programming/StoneGame.java) (Medium) |
| 190 | +- [Odd Even Jump](problems/src/dynamic_programming/OddEvenJump.java) (Hard) |
186 | 191 |
|
187 | 192 |
|
188 | 193 | #### [Greedy](problems/src/greedy)
|
@@ -232,6 +237,7 @@ My accepted leetcode solutions to some of the common interview problems.
|
232 | 237 | - [Delete Node in a Linked List](problems/src/linked_list/DeleteNode.java) (Easy)
|
233 | 238 | - [Reverse Nodes in k-Group](problems/src/linked_list/ReverseNodesKGroup.java) (Hard)
|
234 | 239 | - [Swap Nodes in Pairs](problems/src/linked_list/SwapNodesInPairs.java) (Medium)
|
| 240 | +- [Middle of Linked List](problems/src/linked_list/MiddleOfLinkedList.java) (Easy) |
235 | 241 |
|
236 | 242 | #### [Math](problems/src/math)
|
237 | 243 |
|
@@ -247,6 +253,7 @@ My accepted leetcode solutions to some of the common interview problems.
|
247 | 253 | - [Solve the Equation](problems/src/math/SolveTheEquation.java) (Medium)
|
248 | 254 | - [Couples Holding Hands](problems/src/math/CouplesHoldingHands.java) (Hard)
|
249 | 255 | - [Reaching Points](problems/src/math/ReachingPoints.java) (Hard)
|
| 256 | +- [Nth Magical Number](problems/src/math/NthMagicalNumber.java) (Hard) |
250 | 257 |
|
251 | 258 | #### [Reservoir Sampling](problems/src/reservoir_sampling)
|
252 | 259 |
|
@@ -292,6 +299,8 @@ My accepted leetcode solutions to some of the common interview problems.
|
292 | 299 | - [Find the Closest Palindrome](problems/src/string/FindTheClosestPalindrome.java) (Hard)
|
293 | 300 | - [Monotone Increasing Digits](problems/src/string/MonotoneIncreasingDigits.java) (Medium)
|
294 | 301 | - [Shortest Palindrome](problems/src/string/ShortestPalindrome.java) (Hard)
|
| 302 | +- [Valid Word Abbreviation](problems/src/string/ValidWordAbbreviation.java) (Easy) |
| 303 | +- [Longest Palindrome](problems/src/string/LongestPalindrome.java) (Easy) |
295 | 304 |
|
296 | 305 | #### [Tree](problems/src/tree)
|
297 | 306 |
|
@@ -335,6 +344,8 @@ My accepted leetcode solutions to some of the common interview problems.
|
335 | 344 | - [Maximum Width of Binary Tree](problems/src/tree/MaximumWidthOfBinaryTree.java) (Medium)
|
336 | 345 | - [Recover Binary Search Tree](problems/src/tree/RecoverBinarySearchTree.java) (Hard)
|
337 | 346 | - [Binary Tree Postorder Traversal](problems/src/tree/BinaryTreePostorderTraversal.java) (Hard)
|
| 347 | +- [Serialize and Deserialize N-ary Tree](problems/src/tree/SerializeAndDeserializeNAryTree.java) (Hard) |
| 348 | +- [Convert BST to Greater Tree](problems/src/tree/ConvertBSTToGreaterTree.java) (Easy) |
338 | 349 |
|
339 | 350 | #### [Two Pointers](problems/src/two_pointers)
|
340 | 351 |
|
|
0 commit comments