Problem Description:
You are provided with an array of floating-point numbers representing daily temperature readings for a period of time (e.g., 30 days). Your task is to write a function that performs the following:
Compute the moving average of the temperature readings using a given window size (w). The moving average for a window is the mean of all temperature values within that window.
Identify anomalous segments where the absolute difference between the actual temperature and the corresponding moving average exceeds a given threshold (t). An anomalous segment is defined as one or more consecutive days where this condition holds true.
Return a list of tuples (or pairs) where each tuple contains the starting index and ending index of an anomalous segment in the original array. If there are no anomalous segments, return an empty list.
Function Signature (in your language of choice):
def find_anomalies(temperatures: List[float], w: int, t: float) -> List[Tuple[int, int]]:
Example:
Given the inputs:
Your function should compute the moving average for each window and then return the list of anomalous segments that satisfy the condition described above.
Notes:
Good luck!