The Lazy Squares
A easy Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- easy
- Seniority
- L4
Problem
Given positive integer n, yield (as a generator) 1^2, 2^2, ..., n^2 in order. The test harness collects them into a list.
Summary
A sequence that never fully reveals itself.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.