Generate Circular Array Values — LeetCode 2757 Python Solution

MediumLeetCode PremiumJavaScript
Problem
#2757
Reading time
2 min

The problem

Given a circular array arr and an integer startIndex, return a generator object gen that yields values from arr. The first time gen.next() is called on the generator, it should should yield arr[startIndex].

Example

Input
arr = [1,2,3,4,5], steps = [1,2,6], startIndex = 0
Output
[1,2,4,5]
Explanation
const gen = cycleGenerator(arr, startIndex);

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2757. Generate Circular Array Values?
LeetCode 2757. Generate Circular Array Values is rated Medium on LeetCode.
What topics does LeetCode 2757. Generate Circular Array Values cover?
LeetCode 2757. Generate Circular Array Values is tagged JavaScript on LeetCode.
Is LeetCode 2757. Generate Circular Array Values a premium problem?
Yes. LeetCode 2757. Generate Circular Array Values is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.

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