LeetCode 989. Add to Array-Form of Integer in F#
URL
Add to Array-Form of Integer - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0989/main.fsx
let addToArrayForm (num: int list) (k: int) : int list =
let rec addToArrayForm' nums ks carry acc =
...
syohex.hashnode.dev1 min read