LeetCode 501. Find Mode in Binary Search Tree in F#
URL
Find Mode in Binary Search Tree - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0501/main.fsx
open System
type Tree =
| Leaf
| Node of int * Tree * Tree
let findMode (root: Tree) : int list =
...
syohex.hashnode.dev1 min read