22
33My accepted leetcode solutions to some of the common interview problems.
44
5- ##### [ Array] ( problems/src/array )
5+ #### [ Array] ( problems/src/array )
66
77- [ Pascals Traiangle II] ( problems/src/array/PascalsTriangle.java ) (Easy)
88- [ Product Of Array Except Self] ( problems/src/array/ProductOfArrayExceptSelf.java ) (Medium)
@@ -11,7 +11,7 @@ My accepted leetcode solutions to some of the common interview problems.
1111- [ Third Maximum Number] ( problems/src/array/ThirdMaximumNumber.java ) (Easy)
1212- [ TwoSum II] ( problems/src/array/TwoSumII.java ) (Easy)
1313
14- ##### [ Backtracking] ( problems/src/backtracking )
14+ #### [ Backtracking] ( problems/src/backtracking )
1515
1616- [ Combinations] ( problems/src/backtracking/Combinations.java ) (Medium)
1717- [ Combinations Sum] ( problems/src/backtracking/CombinationSum.java ) (Medium)
@@ -24,28 +24,28 @@ My accepted leetcode solutions to some of the common interview problems.
2424- [ SubSet II] ( problems/src/backtracking/SubsetsII.java ) (Medium)
2525- [ WordSearch] ( problems/src/backtracking/WordSearch.java ) (Medium)
2626
27- ##### [ Binary Search] ( problems/src/binary_search )
27+ #### [ Binary Search] ( problems/src/binary_search )
2828
2929- [ Minimum Sorted Rotated Array] ( problems/src/binary_search/MinSortedRotatedArray.java ) (Medium)
3030- [ Search in a Rotated Sorted Array] ( problems/src/binary_search/SearchRotatedSortedArray.java ) (Medium)
3131
32- ##### [ Bit Manipulation] ( problems/src/bit_manipulation )
32+ #### [ Bit Manipulation] ( problems/src/bit_manipulation )
3333
3434- [ Gray Code] ( problems/src/bit_manipulation/GrayCode.java ) (Medium)
3535
36- ##### [ Breadth First Search] ( problems/src/breadth_first_search )
36+ #### [ Breadth First Search] ( problems/src/breadth_first_search )
3737
3838- [ Binaray Tree Level Order Traversal] ( problems/src/breadth_first_search/BinarayTreeLevelOrderTraversal.java ) (Medium)
3939- [ Word Ladder] ( problems/src/breadth_first_search/WordLadder.java ) (Medium)
4040- [ Word Ladder II] ( problems/src/breadth_first_search/WordLadderII.java ) (Hard)
4141
42- ##### [ Depth First Search] ( problems/src/depth_first_search )
42+ #### [ Depth First Search] ( problems/src/depth_first_search )
4343
4444- [ Minesweeper] ( problems/src/depth_first_search/Minesweeper.java ) (Medium)
4545- [ Movie Recommend] ( problems/src/depth_first_search/MovieRecommend.java ) (Medium)
4646- [ Number Of Islands] ( problems/src/depth_first_search/NumberOfIslands.java ) (Medium)
4747
48- ##### [ Design] ( problems/src/design )
48+ #### [ Design] ( problems/src/design )
4949
5050- [ Copy List With Random Pointer] ( problems/src/design/CopyListWithRandomPointer.java ) (Medium)
5151- [ Encode and Decode Tiny URL] ( problems/src/design/EncodeAndDecodeTinyURL.java ) (Medium)
@@ -55,12 +55,12 @@ My accepted leetcode solutions to some of the common interview problems.
5555- [ Serialize Deserialize Binary Tree] ( problems/src/design/SerializeDeserializeBinaryTree.java ) (Hard)
5656- [ Design Twitter] ( problems/src/design/Twitter.java ) (Medium)
5757
58- ##### [ Devide and Conquer] ( problems/src/divide_and_conquer )
58+ #### [ Devide and Conquer] ( problems/src/divide_and_conquer )
5959
6060- [ Kth Largest Element In a Array] ( problems/src/divide_and_conquer/KthLargestElementInAnArray.java ) (Medium)
6161- [ Search in a 2D Matrix] ( problems/src/divide_and_conquer/SearchA2DMatrix.java ) (Medium)
6262
63- ##### [ Dynamic Programming] ( problems/src/dynamic_programming )
63+ #### [ Dynamic Programming] ( problems/src/dynamic_programming )
6464
6565- [ Best Time To Buy and Sell Stocks] ( problems/src/dynamic_programming/BestTimeToBuyAndSellStocks.java ) (Easy)
6666- [ Climbing Stairs] ( problems/src/dynamic_programming/ClimbingStairs.java ) (Easy)
@@ -77,12 +77,12 @@ My accepted leetcode solutions to some of the common interview problems.
7777- [ WordBreak] ( problems/src/dynamic_programming/WordBreak.java ) (Medium)
7878- [ WordBreak II] ( problems/src/dynamic_programming/WordBreakII.java ) (Hard)
7979
80- ##### [ Greedy] ( problems/src/greedy )
80+ #### [ Greedy] ( problems/src/greedy )
8181
8282- [ Jump Game] ( problems/src/greedy/JumpGame.java ) (Medium)
8383- [ Jump Game II] ( problems/src/greedy/JumpGameII.java ) (Medium)
8484
85- ##### [ Hashing] ( problems/src/hashing )
85+ #### [ Hashing] ( problems/src/hashing )
8686
8787- [ Anagrams] ( problems/src/hashing/Anagrams.java ) (Medium)
8888- [ Group Anagrams] ( problems/src/hashing/GroupAnagrams.java ) (Medium)
@@ -91,11 +91,11 @@ My accepted leetcode solutions to some of the common interview problems.
9191- [ Two Sum] ( problems/src/hashing/TwoSum.java ) (Easy)
9292- [ Valid Anagram] ( problems/src/hashing/ValidAnagram.java ) (Easy)
9393
94- ##### [ Heap] ( problems/src/heap )
94+ #### [ Heap] ( problems/src/heap )
9595
9696- [ Sliding Window Maximum] ( problems/src/heap/SlidingWindowMaximum.java ) (Hard)
9797
98- ##### [ Linked List] ( problems/src/linked_list )
98+ #### [ Linked List] ( problems/src/linked_list )
9999
100100- [ Intersection of two Linked-Lists] ( problems/src/linked_list/IntersectionOfTwoLists.java ) (Easy)
101101- [ Linked List Cycle] ( problems/src/linked_list/LinkedListCycle.java ) (Easy)
@@ -104,26 +104,26 @@ My accepted leetcode solutions to some of the common interview problems.
104104- [ Paliandrome List] ( problems/src/linked_list/PaliandromeList.java ) (Easy)
105105- [ Reverse Linked List] ( problems/src/linked_list/ReverseLinkedList.java ) (Easy)
106106
107- ##### [ Math] ( problems/src/math )
107+ #### [ Math] ( problems/src/math )
108108
109109- [ Add Two Numbers] ( problems/src/math/AddTwoNumbers.java ) (Medium)
110110- [ Count Primes] ( problems/src/math/CountPrimes.java ) (Easy)
111111- [ Rotate Function] ( problems/src/math/RotateFunction.java ) (Medium)
112112
113- ##### [ Stack] ( problems/src/stack )
113+ #### [ Stack] ( problems/src/stack )
114114
115115- [ Min Stack] ( problems/src/stack/MinStack.java ) (Easy)
116116- [ Valid Parentheses] ( problems/src/stack/ValidParentheses.java ) (Easy))
117117
118- ##### [ String] ( problems/src/string )
118+ #### [ String] ( problems/src/string )
119119
120120- [ First Unique Character In a String] ( problems/src/string/FirstUniqueCharacterInAString.java ) (Easy)
121121- [ Repeated Substring Pattern] ( problems/src/string/RepeatedSubstringPattern.java ) (Easy)
122122- [ ReverseWords II] ( problems/src/string/ReverseWordsII.java ) (Medium)
123123- [ String to Integer] ( problems/src/string/StringToInteger.java ) (Medium)
124124- [ Text Justification] ( problems/src/string/TextJustification.java ) (Hard)
125125
126- ##### [ Tree] ( problems/src/tree )
126+ #### [ Tree] ( problems/src/tree )
127127
128128- [ Binaray Tree Right Side View] ( problems/src/tree/BinarayTreeRightSideView.java ) (Medium)
129129- [ Binary Tree Maximum Path Sum] ( problems/src/tree/BinaryTreeMaximumPathSum.java ) (Hard)
@@ -138,7 +138,7 @@ My accepted leetcode solutions to some of the common interview problems.
138138- [ Sorted Array to BST] ( problems/src/tree/SortedArrayToBST.java ) (Medium)
139139- [ Valid Binary Search Tree] ( problems/src/tree/ValidBinarySearchTree.java ) (Medium)
140140
141- ##### [ Two Pointers] ( problems/src/two_pointers )
141+ #### [ Two Pointers] ( problems/src/two_pointers )
142142
143143- [ Four Sum] ( problems/src/two_pointers/FourSum.java ) (Medium)
144144- [ Longest Substring Witout Repeats] ( problems/src/two_pointers/LongestSubstringWitoutRepeats.java ) (Medium)
0 commit comments