LeetCode 1381. Design a Stack With Increment Operation in F#
URL
Design a Stack With Increment Operation - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202409/design_a_stack_with_increment_operation/main.fsx
type CustomStack =
{ Data: int[]
Top: int }
...
syohex.hashnode.dev1 min read