LeetCode 232. Implement Queue using Stacks in F#
URL
Implement Queue using Stacks - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/problems/0232/main.fsx
type MyQueue =
{ stack1: int list
stack2: int list }
static member empty() : MyQueue = { stack1 ...
syohex.hashnode.dev1 min read