Skip to content

Commit 28e6b82

Browse files
updating
1 parent 334bf6e commit 28e6b82

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

driving.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ def decision_when_red(weather,distance_to_signal,speed_limit)
5252
def drive_decision(traffic_signal, weather, distance_to_signal, speed_limit)
5353
end
5454

55+
def valid_weather_condition?(weather)
56+
[:sunny, :rainy].include?(weather.to_sym)
57+
end
58+
5559
def drive_decision(traffic_signal, weather, distance_to_signal, speed_limit)
5660
raise "Unhandled weather condition" unless valid_weather_condition?(weather)
5761
#...rest of the method implementation…
@@ -65,13 +69,12 @@ def drive_decision(traffic_signal, weather, distance_to_signal, speed_limit)
6569
end
6670
end
6771

68-
def valid_weather_condition?(weather)
69-
[:sunny, :rainy].include?(weather.to_sym)
70-
end
72+
7173

7274
puts drive_decision(:yellow, :sunny, 25, 35)
7375
puts drive_decision(:red, :rainy, 25, 35)
7476
puts drive_decision(:green, :rainy, 25, 35)
7577
puts drive_decision(:green, :sunny, 25, 35)
7678

7779

80+

0 commit comments

Comments
 (0)