LeetCode 1268. Search Suggestions System in F#
URL
https://leetcode.com/problems/search-suggestions-system/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/1268/main.fsx
open System
type Trie =
{ table: Map<char, Trie>
candidates: Set<string> }
sta...
syohex.hashnode.dev1 min read