LeetCode 725. Split Linked List in Parts in F#
URL
Split Linked List in Parts - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0725/main.fsx
type ListNode =
| Leaf
| Node of int * ListNode
let listLength (head: ListNode) : int =
let rec list...
syohex.hashnode.dev2 min read