LeetCode 38. Count and Say in F#
URL
https://leetcode.com/problems/count-and-say/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0038/main.fsx
let groupBy (s: string) : (int * char) list =
let rec groupBy' cs prev count acc =
match cs wi...
syohex.hashnode.dev1 min read