Calculator with Method Chaining — LeetCode 2726 Python Solution

EasyJavaScript
Problem
#2726
Reading time
2 min

The problem

Design a Calculator class. The class should provide the mathematical operations of addition, subtraction, multiplication, division, and exponentiation.

Example

Input
actions = ["Calculator", "add", "subtract", "getResult"],
Output
8
Explanation
new Calculator(10).add(5).subtract(7).getResult() // 10 + 5 - 7 = 8

Complexity

MeasureComplexity
TimeO(n)
SpaceO(1) to O(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2726. Calculator with Method Chaining?
LeetCode 2726. Calculator with Method Chaining is rated Easy on LeetCode.
What topics does LeetCode 2726. Calculator with Method Chaining cover?
LeetCode 2726. Calculator with Method Chaining is tagged JavaScript on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview