package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev
# README
Description
Implement a Min/Max Stack. A Stack that can tell you the Minimum or Maximum value
Example:
Input: Push 15, Push 11, Push 100, Pop, Get Max
Output: 15
# Functions
New factory to generate new stacks.