LeetCode 729. My Calendar I in F#
URL
https://leetcode.com/problems/my-calendar-i/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0729/main.fsx
type MyCalendar =
{ Ranges: (int * int) list }
static member init() : MyCalendar = { Ranges = [] ...
syohex.hashnode.dev1 min read