Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rasleen
/
SmartTrafficLightSimulation
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dbaa8d8
SmartTrafficLightSimulation
/
traffic_logic.py
Rasleen
Create traffic_logic.py
dbaa8d8
verified
3 months ago
raw
Copy download link
history
blame
Safe
145 Bytes
def
get_next_green
(
vehicle_counts
):
# Returns the road with the highest vehicle count
return
max
(vehicle_counts, key=vehicle_counts.get)