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 8% | |
#2 | 69 c. | Top 17% | |
#3 | 71 c. | Top 25% | |
#4 | 74 c. | Top 33% | |
#5 | 77 c. | Top 42% | |
#6 | 79 c. | Top 50% | |
#7 | 89 c. | Top 58% | |
#8 | 124 c. | Top 67% | |
#9 | 139 c. | Top 75% | |
#10 | 169 c. | Top 83% | |
#11 | 207 c. | Top 92% | |
#12 | 656 c. | Top 100% |