LeetCode 86. Partition List in F#
URL
Partition List - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202308/partition_list/main.fsx
type ListNode =
| Leaf
| Node of int * ListNode
let partition (head: ListNode) (x: int) : ListNode...
syohex.hashnode.dev1 min read