You are given a log file that contains events, where each event is represented as a JSON object with the following structure:
{
"id": "event1",
"timestamp": "2025-01-04T12:00:00Z",
"previous_event_id": null
}
Each event may depend on a previous event (indicated by the field previous_event_id
). An event with a null
value for previous_event_id
starts a new chain. The events in the input array may be unordered and the chains can be independent.
Your task is to:
Make sure your solution can handle large datasets efficiently.