Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

Active time

This problem was asked by Postmates.

Description

The “active time” of a courier is the time between the pickup and dropoff of a delivery. Given a set of data formatted like the following:

(delivery id, timestamp, pickup/dropoff)

Calculate the total active time in seconds. A courier can pick up multiple orders before dropping them off. The timestamp is in unix epoch seconds.

Example

Input:
    (1, 1573280047, 'pickup')
    (1, 1570320725, 'dropoff')
    (2, 1570321092, 'pickup')
    (3, 1570321212, 'pickup')
    (3, 1570322352, 'dropoff')
    (2, 1570323012, 'dropoff')

Output: 1260