PracticeLevel 3: CollectionsEx 64. Moving average window
0/150 Solved(0%)
Level 3Exercise #64

Moving average window

Return the average after each full window of size k in O(n) time.

What you’ll practice

This Level 3 exercise focuses on deque window in the Collections curriculum. Solve the challenge prompt above using clear, idiomatic Python and the relevant language or standard-library tools.

Relevant Python reference: collections.deque.

Sample Test Cases

Example #1
Input:moving_average([1,3,5,7], k=2)
Output:[2.0,4.0,6.0]

Further Reading

Reference Solution

Reveal Reference Solution
def moving_average(values: list[int], k: int) -> list[float]:
from collections import deque
window, total, result = deque(), 0, []
for value in values:
window.append(value)
total += value
if len(window) > k:
total -= window.popleft()
if len(window) == k:
result.append(total / k)
return result
Pro Tips & Keyboard Shortcuts
Color Theme
Ctrl + K then T

Open VS Code Color Theme Quick Pick to select from 20 dark and light themes.

Editor SettingsCtrl + K

Open practice settings drawer to toggle line numbers, indenting, font size & hints.

Search MenuCtrl + /

Expand sidebar menu, focus search bar, and highlight search text instantly.

Focus Code Editor
Esc or Ctrl + `

Instantly highlight and focus code editor from anywhere, restoring cursor right where you left off.

Normal ViewEsc

Collapse sidebar and close all popups or settings drawers for clean focus view.

solution.py· Python 3.11 WASM