Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Given an expression in Reverse Polish Notation (postfix), evaluate the value of the expression. In Reverse Polish Notation, the operators follow their operands. For example, the expression 3 10 5 + *
is equivalent to 3 * (10 + 5)
.
The expression is given as an array either integers or operators. So, for the expression [3, 10, 5, '+', '*']
you should return 45
.
The result should be rounded to the nearest integer.
# | Size | % | Users |
---|---|---|---|
#1 | 66 c. | Top 13% | |
#2 | 69 c. | Top 25% | |
#3 | 75 c. | Top 38% | |
#4 | 77 c. | Top 50% | |
#5 | 79 c. | Top 63% | |
#6 | 89 c. | Top 75% | |
#7 | 139 c. | Top 88% | |
#8 | 207 c. | Top 100% |