Skip to content

Commit b8f57f0

Browse files
committed
update
1 parent 9d97463 commit b8f57f0

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,29 @@ Problem | Solution | Time | Space | Difficul
3636
Problem | Solution | Time | Space | Difficulty | Notes
3737
--------------- | --------------- | --------------- | --------------- | -------------- | -----
3838
[Add Binary] | [add-binary.py] | _O(n)_ | _O(1)_ | Easy |
39+
[Anagrams] | [anagrams.py] | _O(n)_ | _O(n)_ | Medium |
3940

4041
[Add Binary]:https://oj.leetcode.com/problems/add-binary/
4142
[add-binary.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/add-binary.py
43+
[Anagrams]:https://oj.leetcode.com/problems/anagrams/
44+
[anagrams.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/anagrams.py
4245

4346
##Linked List
4447
Problem | Solution | Time | Space | Difficulty | Notes
4548
--------------- | --------------- | --------------- | --------------- | -------------- | -----
46-
[Add Two Numbers] | [add-two-numbers.py] | _O(n)_ | _O(1)_ | Normal |
49+
[Add Two Numbers] | [add-two-numbers.py] | _O(n)_ | _O(1)_ | Medium |
4750

4851
[Add Two Numbers]:https://oj.leetcode.com/problems/add-two-numbers/
4952
[add-two-numbers.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/add-two-numbers.py
5053

54+
##Tree
55+
Problem | Solution | Time | Space | Difficulty | Notes
56+
--------------- | --------------- | --------------- | --------------- | -------------- | -----
57+
[Balanced Binary Tree] | [balanced-binary-tree.py] | _O(n)_| _O(logn)_| Easy |
58+
59+
[Balanced Binary Tree]:https://oj.leetcode.com/problems/balanced-binary-tree/
60+
[balanced-binary-tree.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/balanced-binary-tree.py
61+
5162
##Binary Search
5263

5364
Problem | Solution | Time | Space | Difficulty | Notes

0 commit comments

Comments
 (0)