LeetCode 86. Partition List in F#
URL
https://leetcode.com/problems/partition-list/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0086/main.fsx
type LinkedList =
| Leaf
| Node of int * LinkedList
static member ofList(nums: int list) : L...
syohex.hashnode.dev1 min read