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 9% | |
#2 | 69 c. | Top 18% | |
#3 | 75 c. | Top 36% | |
#4 | 77 c. | Top 45% | |
#5 | 79 c. | Top 55% | |
#6 | 89 c. | Top 64% | |
#7 | 124 c. | Top 73% | |
#8 | 139 c. | Top 82% | |
#9 | 169 c. | Top 91% | |
#10 | 207 c. | Top 100% |