LLD - Design — Splitwise (Expense Sharing)
Given this simplified transaction record list:
What is the correct order of transaction IDs if sorted by time ascending?
transactions = [
{"id": "t1", "time": "2024-01-01T10:00:00Z"},
{"id": "t2", "time": "2024-01-01T09:00:00Z"},
{"id": "t3", "time": "2024-01-01T11:00:00Z"}
]What is the correct order of transaction IDs if sorted by time ascending?
