Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Simple Calculator Function
00:00
5 left

Simple Calculator Function

MediumPython

Problem

Schonfeld's risk dashboard receives compact arithmetic expressions for derived values. Implement a calculator that evaluates an expression containing integers, addition, subtraction, multiplication, division, parentheses, and unary plus or minus.

Multiplication and division must be evaluated before addition and subtraction. Parentheses override normal precedence. Division uses true division, so the result may be a floating-point number.

Formal Specification

Implement calculate(expression), where expression is a string containing a valid arithmetic expression. Return its numeric result as an integer or floating-point value. Ignore whitespace. The input will not contain exponentiation, variables, malformed syntax, or division by zero.

Unary operators may appear before any number or parenthesized expression, such as -3, 2 * -4, or -(1 + 2).

Constraints

  • 1 <= len(expression) <= 10^4
  • The expression contains integer literals in the range [-10^9, 10^9]
  • The expression is valid and all parentheses are balanced
  • Division by zero does not occur
  • Whitespace may appear anywhere in the expression

Function Signature

def calculate(expression):
Interviewer

Your question is Simple Calculator Function. Start with the requirements in the Question tab.

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.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.