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 96e67af

Browse files
add more problems
1 parent bb44616 commit 96e67af

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed

‎README.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ My current statistic
3737
| [Search Insert Position](https://leetcode.com/problems/search-insert-position/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/SearchInsertPosition.java) | LeetCode Online Judge |
3838
| [Sum of Left Leaves](https://leetcode.com/problems/sum-of-left-leaves/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/SumLeftLeavesTree.java) | LeetCode Online Judge |
3939
| [Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/MaximumDepthBinaryTree.java) | LeetCode Online Judge |
40-
| []() | [Java]() | LeetCode Online Judge |
41-
42-
43-
4440
| [Next Greater Element I](https://leetcode.com/problems/next-greater-element-i/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/NextGreaterElementI.java) | LeetCode Online Judge |
4541
| [Implement Queue using Stacks](https://leetcode.com/problems/implement-queue-using-stacks/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/ImplementQueueusingStacks.java) | LeetCode Online Judge |
4642
| [Rotate Array]( https://leetcode.com/problems/reshape-the-matrix/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/ReshapetheMatrix.java) | LeetCode Online Judge |
@@ -56,18 +52,18 @@ My current statistic
5652
| [Longest Word in Dictionary through Deleting](https://leetcode.com/problems/longest-word-in-dictionary-through-deleting/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/LongestWordDictionarythroughDeleting.java) | LeetCode Online Judge |
5753
| [Sort List](https://leetcode.com/problems/sort-list/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/SortListTest.java) | LeetCode Online Judge |
5854
| [Sort Colors](https://leetcode.com/problems/sort-colors/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/SortColors.java) | LeetCode Online Judge |
59-
|105| [Maximum Subarray](https://leetcode.com/problems/maximum-subarray/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/MaximumSubarray.java) | LeetCode Online Judge |
60-
|106| [Range Sum Query - Immutable](https://leetcode.com/problems/range-sum-query-immutable/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/NumArray.java) | LeetCode Online Judge |Dynamic P.|
61-
|107| [House Robber](https://leetcode.com/problems/house-robber/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/HouseRobber.java) | LeetCode Online Judge |Dynamic P.|
62-
|108| [Single Number](https://leetcode.com/problems/single-number/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/SingleNumber.java) | LeetCode Online Judge |
63-
|109| [Happy Number](https://leetcode.com/problems/happy-number/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/HappyNumber.java) | LeetCode Online Judge |
64-
|110| [Count Primes](https://leetcode.com/problems/count-primes/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/CountPrimes.java) | LeetCode Online Judge |
65-
|111| [Word Pattern](https://leetcode.com/problems/word-pattern/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/WordPattern.java) | LeetCode Online Judge |Hash Table |
66-
|112| [Keyboard Row](https://leetcode.com/problems/keyboard-row/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/KeyboardRow.java) | LeetCode Online Judge |HashTable|
67-
|113| [Longest Harmonious Subsequence](https://leetcode.com/problems/longest-harmonious-subsequence/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/LongestHarmoniousSubsequence.java) | LeetCode Online Judge |HashMap |
68-
|114| [Binary Tree Inorder Traversal](https://leetcode.com/problems/binary-tree-inorder-traversal/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/BinaryTreeInorderTraversal.java) | LeetCode Online Judge | Tree |
69-
|115| [Clone Graph](https://leetcode.com/problems/clone-graph/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/CloneGraph.java) | LeetCode Online Judge |Graph,BFS|
70-
|116| [Merge Two Binary Trees](https://leetcode.com/problems/merge-two-binary-trees/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/MergeTwoBinaryTrees.java) | LeetCode Online Judge |Tree |
55+
| [Maximum Subarray](https://leetcode.com/problems/maximum-subarray/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/MaximumSubarray.java) | LeetCode Online Judge |
56+
| [Range Sum Query - Immutable](https://leetcode.com/problems/range-sum-query-immutable/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/NumArray.java) | LeetCode Online Judge |
57+
| [House Robber](https://leetcode.com/problems/house-robber/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/HouseRobber.java) | LeetCode Online Judge |
58+
| [Single Number](https://leetcode.com/problems/single-number/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/SingleNumber.java) | LeetCode Online Judge |
59+
| [Happy Number](https://leetcode.com/problems/happy-number/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/HappyNumber.java) | LeetCode Online Judge |
60+
| [Count Primes](https://leetcode.com/problems/count-primes/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/CountPrimes.java) | LeetCode Online Judge |
61+
| [Word Pattern](https://leetcode.com/problems/word-pattern/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/WordPattern.java) | LeetCode Online Judge |
62+
| [Keyboard Row](https://leetcode.com/problems/keyboard-row/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/KeyboardRow.java) | LeetCode Online Judge |
63+
| [Longest Harmonious Subsequence](https://leetcode.com/problems/longest-harmonious-subsequence/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/LongestHarmoniousSubsequence.java) | LeetCode Online Judge |
64+
| [Binary Tree Inorder Traversal](https://leetcode.com/problems/binary-tree-inorder-traversal/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/BinaryTreeInorderTraversal.java) | LeetCode Online Judge |
65+
| [Clone Graph](https://leetcode.com/problems/clone-graph/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/CloneGraph.java) | LeetCode Online Judge |
66+
| [Merge Two Binary Trees](https://leetcode.com/problems/merge-two-binary-trees/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/MergeTwoBinaryTrees.java) | LeetCode Online Judge |Tree |
7167
|117| [Subtree of Another Tree](https://leetcode.com/problems/subtree-of-another-tree/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/SubtreeAnotherTree.java) | LeetCode Online Judge |Tree |
7268
|118| [Binary Tree Tilt](https://leetcode.com/problems/binary-tree-tilt/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/BinaryTreeTilt.java) | LeetCode Online Judge |Tree |
7369
|119| [Diameter of Binary Tree](https://leetcode.com/problems/diameter-of-binary-tree/#/description) | [Java](https://github.com/edyluisrey/Leetcode-Algorithms/blob/master/src/leetcode/DiameterBinaryTree.java) | LeetCode Online Judge |Tree, DFS |

0 commit comments

Comments
(0)

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