LeetCode 729. My Calendar I in F#
URL
My Calendar I - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202409/my_calendar1/main.fsx
type MyCalendar =
{ Ranges: (int * int) list }
static member Empty: MyCalendar = { Ranges = [] }
...
syohex.hashnode.dev1 min read