LeetCode 1845. Seat Reservation Manager in F#
URL
Seat Reservation Manager - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/1845/main.fsx
#r "nuget: Fsharpx.Collections"
open FSharpx.Collections
type SeatManager =
{ seats: IPriorityQueue<int> }
...
syohex.hashnode.dev1 min read