Reverse Polish Notation

Evaluate the value of an arithmetic expression in Reverse Polish Notation.

Medium6/2/2024

Problem statement

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.

Problem leaderboard

#
Size
%
Users
#1
77 c.
Top 25%
voytxt
#2
89 c.
Top 50%
maximec-indy
#3
139 c.
Top 75%
Thomasdcrt
#4
207 c.
Top 100%
ComputerKWasTaken