File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change @@ -36,18 +36,29 @@ Problem | Solution | Time | Space | Difficul
3636Problem | 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
4447Problem | 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
5364Problem | Solution | Time | Space | Difficulty | Notes
You can’t perform that action at this time.
0 commit comments