0095. Unique Binary Search Trees II
https://leetcode.com/problems/unique-binary-search-trees-ii
Description
Given an integer n, return *all the structurally unique **BST'*s (binary search trees), which has exactly n nodes of unique values from 1 to n. Return the answer in any order.
Example 1:

Example 2:
Constraints:
1 <= n <= 8
ac1: divide and conquer
similar: https://leetcode.com/submissions/detail/147072693/
With cache:
Last updated
Was this helpful?