package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev
# README
Description
Postfix notation is a notation for writing arithmetic expressions in which the operands appear before their operators.
Example 1:
Input: 4 5 +
Output: 9
Example 2:
Input: 9 3 /
Output: 3
Example 3:
Input: 17 8 -
Output: 9
# Functions
Evaluate evaluates postfix expressions.