LeetCode 402. Remove K Digits in F#
URL
https://leetcode.com/problems/remove-k-digits/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0402/main.fsx
let findRemoveIndex (nums: int list) : int =
let rec findRemoveIndex' prev idx nums =
match ...
syohex.hashnode.dev1 min read