LeetCode 981. Time Based Key-Value Store in F#
URL
https://leetcode.com/problems/time-based-key-value-store/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0981/main.fsx
type TimeMap =
{ table: Map<string, Map<int, string>> }
static member empty() : Time...
syohex.hashnode.dev1 min read