LeetCode 3174. Clear Digits in F#
URL
Code
let clearDigits (s: string) : string =
s
|> Seq.fold
(fun acc c ->
if System.Char.IsAsciiDigit(c) then
match acc with
| [] -> []
| _ :: t -> t
else
c :: acc)
[]
|> List.rev
|> System.String.Concat