LeetCode 897. Increasing Order Search Tree in F#
URL
https://leetcode.com/problems/increasing-order-search-tree/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0897/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let rec appendRight (root: Tree) (n...
syohex.hashnode.dev1 min read