You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement the funciton in src/isSnowDay.py with the following specification:
given a list of numeric values for inches of snow, return a list indicating whether Cornell would have a snowday
rule: 4 inches = snowday. nothing more. nothing less.
ex. [0, 8, 4, 999], return [False, False, True, False]
The text was updated successfully, but these errors were encountered:
Implement the funciton in
src/isSnowDay.py
with the following specification:The text was updated successfully, but these errors were encountered: