Counter II — LeetCode 2665 Python Solution
EasyJavaScript
- Problem
- #2665
- Reading time
- 2 min
- Source
- leetcode.com
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
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(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.