290. Word Pattern in F#
URL
https://leetcode.com/problems/word-pattern/description/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0290/main.fsx
let wordPattern (pattern: string) (s: string) : bool =
let rec wordPattern' pattern words m...
syohex.hashnode.dev1 min read