LeetCode 341. Flatten Nested List Iterator in F#
URL
https://leetcode.com/problems/flatten-nested-list-iterator/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0341/main.fsx
type NestedInteger =
| Int of int
| List of NestedInteger list
type NestedIterator...
syohex.hashnode.dev1 min read