95. Unique Binary Search Trees II
Difficulty: Medium
Given an integer n, generate all structurally unique BST’s (binary search trees) that store values 1 … n.
Example:
| 1 | Input: 3 | 
Solution
Language: Java
| 1 | /** | 
Difficulty: Medium
Given an integer n, generate all structurally unique BST’s (binary search trees) that store values 1 … n.
Example:
| 1 | Input: 3 | 
Language: Java
| 1 | /** |