Toggle navigation
beta
Blog
Login
Write a method to find the value of an arithmetic expression in Postfix Notation also known as Reverse Polish Notation.
Examples:
evalPostfixNotation("{5,1,+,4,*}") --> 24
Log in to see all hints.
Quick hint to get things rolling
The interview prep tool you'll fall in love with!
Request
FREE
Beta Invite
public static int evalPostfixNotation(String[] tokens){ }
Log in to Run your code against the test cases and check the answer.
This Coding Interview Question is available with an answer in the following programming languages :