Reverse Polish Notation (RPN) puts operators after their operands. No parentheses needed!
Algorithm using a stack:
int(a/b) not a//bThis is how calculators and compilers actually evaluate expressions!
eval_rpn(["2","1","+","3","*"])
9
eval_rpn(["4","13","5","/","+"])
6