You are given an array of login attempt records. Each record is an object (or dictionary) with the following keys:
timestamp
: A string representing the time of the login attempt in ISO 8601 format (e.g., "2025-01-06T12:34:56Z").user_id
: A string representing the unique identifier of a user.Write a function that accepts the following parameters:
threshold
representing the number of login attempts.window
representing a time window in minutes.The function should analyze the login attempts and return a list of unique user_id
s for which there exists any sliding window of the given window
duration during which the number of login attempts exceeds the threshold
.
Additional requirements:
Example scenario (for clarification only):
If the threshold is 3 and the window is 5 minutes, then a user who makes 4 login attempts within any 5 minute period should be included in the output.
Provide a complete, runnable solution in the programming language of your choice.