LeetCode 705. Design HashSet in F#
URL
Design HashSet - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202305/design_hashset/main.fsx
type MyHashSet =
{ Table: int list[] }
static member init() : MyHashSet = { Table = Array.init 102...
syohex.hashnode.dev1 min read