@@ -60,6 +60,7 @@ This is the solutions collection of my LeetCode submissions, most of them are pr
60
60
| 91| [ Decode Ways] ( https://leetcode.com/problems/decode-ways/ ) | [ JavaScript] ( ./src/decode-ways/res.js ) | Medium|
61
61
| 93| [ Restore IP Addresses] ( https://leetcode.com/problems/restore-ip-addresses/ ) | [ JavaScript] ( ./src/restore-ip-addresses/res.js ) | Medium|
62
62
| 94| [ Binary Tree Inorder Traversal] ( https://leetcode.com/problems/binary-tree-inorder-traversal/ ) | [ TypeScript] ( ./src/binary-tree-inorder-traversal/res.ts ) | Easy|
63
+ | 96| [ unique-binary-search-trees] ( https://leetcode.com/problems/unique-binary-search-trees/ ) | [ TypeScript] ( ./src/unique-binary-search-trees/res.ts ) | Medium|
63
64
| 98| [ Validate Binary Search Tree] ( https://leetcode.com/problems/validate-binary-search-tree/ ) | [ JavaScript] ( ./src/validate-binary-search-tree/res.js ) | Medium|
64
65
| 100| [ Same Tree] ( https://leetcode.com/problems/same-tree/ ) | [ JavaScript] ( ./src/same-tree/res.js ) | Easy|
65
66
| 101| [ Symmetric Tree] ( https://leetcode.com/problems/symmetric-tree/ ) | [ JavaScript] ( ./src/symmetric-tree/res.js ) | Easy|