LeetCode 988. Smallest String Starting From Leaf in F#
URL
Smallest String Starting From Leaf - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202404/smallest_string_starting_from_leaf/main.fsx
type Tree =
| Leaf
| Node of int * Tree * Tree
let smalles...
syohex.hashnode.dev1 min read