LeetCode 99. Recover Binary Search Tree in F#
URL
https://leetcode.com/problems/recover-binary-search-tree/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0099/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let collectValues (root: Tree) : int ...
syohex.hashnode.dev2 min read