https://leetcode.com/problems/unique-binary-search-trees/ Unique Binary Search Trees - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 임의의 정수가 주어졌을 때, 이진 트리로 구성될 수 있는 모든 가짓수를 구하는 문제. 직전 풀었던 문제와 비슷한 개념으로 접근하면 될거 같다. https://makga.tistory.com/122 1부터 n까지 모든 정수가 root 노드에 존재할 수 있고, lef..