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