Minimum Of A Single Element List

minimum value of stack [ x, [ ] ] = x

If the list contains a single element, then the minimum value is the single element. This is the base case for minimum value proofs.

Examples

minimum value of stack [ 1, [ ] ] = 1

minimum value of stack [ 1248, [ ] ] = 1248


Comments

Please log in to add comments