LeetCode 95. Unique Binary Search Trees II in F#
URL
https://leetcode.com/problems/unique-binary-search-trees-ii/description/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0095/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let generateTrees (n: ...
syohex.hashnode.dev1 min read