LeetCode 242. Valid Anagram in F#
URL
https://leetcode.com/problems/valid-anagram/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0242/main.fsx
let isAnagram (s: string) (t: string) : bool =
let rec isAnagram' ss tt =
match ss, tt with
...
syohex.hashnode.dev1 min read