LeetCode 2336. Smallest Number in Infinite Set in F#
URL
Smallest Number in Infinite Set - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/2336/main.fsx
type SmallestInfiniteSet =
{ Popped: Set<int> }
static member init() = { Popped = Set.empty }
...
syohex.hashnode.dev1 min read