File size: 144 Bytes
8ec62b9
 
 
1
2
3
def get_next_green(vehicle_counts):
    # Returns the road with the highest vehicle count
    return max(vehicle_counts, key=vehicle_counts.get)