LeetCode 402. Remove K Digits in F#
URL
Remove K Digits - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202404/remove_k_digits/main.fsx
open System
let removeKDigits (num: string) (k: int) : string =
let rec popBiggerNumber stack num k ...
syohex.hashnode.dev1 min read