LeetCode 284. Peeking Iterator in F#
URL
https://leetcode.com/problems/peeking-iterator/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0284/main.fsx
type Iterator =
{ mutable Nums: int list }
static member init(nums: int list) : Iterator = { N...
syohex.hashnode.dev1 min read