LeetCode 382. Linked List Random Node in F#
URL
https://leetcode.com/problems/linked-list-random-node/description/
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0382/main.fsx
open System
type LinkedList =
| Leaf
| Node of int * LinkedList
type Solut...
syohex.hashnode.dev1 min read