LeetCode 535. Encode and Decode TinyURL in F#
URL
https://leetcode.com/problems/encode-and-decode-tinyurl/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0535/main.fsx
open System
type Solution =
{ mutable Cache: Map<string, string> }
static member ini...
syohex.hashnode.dev1 min read