LeetCode 225. Implement Stack using Queues in F#
URL
https://leetcode.com/problems/implement-stack-using-queues/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/problems/0225/main.fsx
#r "nuget:FSharpx.Collections"
open FSharpx.Collections
type MyStack =
{ mutable Queu...
syohex.hashnode.dev1 min read