Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 483 Bytes

File metadata and controls

18 lines (10 loc) · 483 Bytes

Calculator

Instructions

Create a simple calculator that given a string of operators (), +, -, *, / and numbers separated by spaces returns the value of that expression.

Example

Calculator().evaluate("2 / 2 + 3 * 4 - 6") # => 7

Notes

Remember about the order of operations! Multiplications and divisions have a higher priority and should be performed left-to-right. Additions and subtractions have a lower priority and should also be performed left-to-right.