LeetCode 232. Implement Queue using Stacks in F#
URL
https://leetcode.com/problems/implement-queue-using-stacks/description/
Code
https://github.com/syohex/dotnet-study/blob/master/fsharp/leetcode/challenge/202401/implement_queue_using_stacks/main.fsx
type MyQueue =
{ stack: int list }
sta...
syohex.hashnode.dev1 min read