Counter — LeetCode 2620 Python Solution

EasyJavaScript
Problem
#2620
Reading time
2 min

The problem

Given an integer n, return a counter function. This counter function initially returns n and then returns 1 more than the previous value every subsequent time it is called (n, n + 1, n + 2, etc).

Example

Input
n = 10
Output
[10,11,12]
Explanation
counter() = 10 // The first time counter() is called, it returns n.

Complexity

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

Related problems

Frequently asked questions

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