LeetCode 876. Middle of the Linked List in F#
URL
https://leetcode.com/problems/middle-of-the-linked-list/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0876/main.fsx
type List =
| Leaf
| Node of int * List
let middleNode (head: List) : List =
let ...
syohex.hashnode.dev1 min read