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 7% | |
#2 | 69 c. | Top 14% | |
#3 | 71 c. | Top 21% | |
#4 | 74 c. | Top 29% | |
#5 | 77 c. | Top 36% | |
#6 | 79 c. | Top 43% | |
#7 | 89 c. | Top 50% | |
#8 | 97 c. | Top 57% | |
#9 | 124 c. | Top 64% | |
#10 | 139 c. | Top 71% | |
#11 | 169 c. | Top 79% | |
#12 | 207 c. | Top 86% | |
#13 | 645 c. | Top 93% | |
#14 | 656 c. | Top 100% |