Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Prefix Notation Expression Evaluation

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Prefix Notation Expression Evaluation. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Thumbtack's quote preview may represent a calculation as a compact postfix expression, where each lowercase letter refers to a numeric value. Evaluate the expression and return its integer result.

Although the extracted example is written as ab+cd+*, this notation is postfix, not prefix: operands appear before their operators.

Formal Specification

Implement evaluate_postfix(expression, values), where expression is a non-empty string containing lowercase letters and the operators +, -, *, and /. The dictionary values maps every operand letter in the expression to an integer. Return the resulting integer.

For division, truncate toward zero. Every input expression is valid, has enough operands for every operator, and evaluates without division by zero.

Constraints

  • 1 <= len(expression) <= 10^5
  • Each operand is a lowercase English letter
  • values contains every operand used in expression
  • The expression is valid postfix notation
  • Division by zero does not occur
  • Intermediate and final results fit within Python's integer range

Function Signature

def evaluate_postfix(expression, values):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output