https://leetcode.com/problems/unique-binary-search-trees-ii/ Unique Binary Search Trees II - 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 easy만 풀다가 medium 풀려니 감이 안와서 Discuss 보고 이해하려고 노력했다. 정수(n) 주어졌을 때 1부터 n까지 숫자로 구성할 수 있는 모든 트리의 경우를 출력하는 문제다. 풀이 방법은 다음과 같다. solve함수가 재귀로 호출될 함수이..