LeetCode 148. Sort List in F#
URL
https://leetcode.com/problems/sort-list/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0148/main.fsx
type LinkedList =
| LinkEnd
| LinkNode of int * LinkedList
let rec toList (xs: LinkedList) : int list...
syohex.hashnode.dev2 min read