DIY: Moving Average from a Data Stream
Explore how to calculate the moving average of integers within a sliding window using Elixir. This lesson helps you understand data stream processing and prepares you to solve related coding interview problems by implementing efficient functions.
We'll cover the following...
We'll cover the following...
Problem statement
In this challenge, you are given a list of integers and a window size as input. Your task is to calculate the moving average of all the integers present in that sliding window.
The ...