LeetCode 912. Sort an Array in F#
URL
Sort an Array - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0912/main.fsx
let sortArray (nums: int list) : int list =
let rec merge left right acc =
match left, right with
| [], []...
syohex.hashnode.dev1 min read