Counter II — LeetCode 2665 Python Solution

EasyJavaScript
Problem
#2665
Reading time
2 min

The problem

Write a function createCounter. It should accept an initial integer init.

Example

Input
init = 5, calls = ["increment","reset","decrement"]
Output
[6,5,4]
Explanation
const counter = createCounter(5);

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2665. Counter II?
LeetCode 2665. Counter II is rated Easy on LeetCode.
What topics does LeetCode 2665. Counter II cover?
LeetCode 2665. Counter II 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