Calculate minutes between two time strings
Company: SIG (Susquehanna)
Role: Software Engineer
Category: Data Manipulation (SQL/Python)
Difficulty: Medium
Interview Round: Take-home Project
Given two times t1 and t2 in "HH:MM" 24-hour format on the same day with t2 > t1, compute the difference in minutes. Show how you parse the strings, convert to minutes since midnight, and subtract. Example: t1 = "12:23", t2 = "13:24" -> 61.
Quick Answer: This question evaluates proficiency with string parsing and time arithmetic, assessing the ability to interpret HH:MM formatted timestamps and work with temporal values in minute units.