LeetCode 225. Implement Stack using Queues in F#
URL
Implement Stack using Queues - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202308/implement_stack_using_queues/main.fsx
type MyStack =
{ queue: int list }
static member empty() : MyStack = {...
syohex.hashnode.dev1 min read