OpenSourceCornell / Spring_2018_WICC_OSC

The Git Workshop for the Spring 2018 WICC and Open Source Cornell Introduction to Open Source event.
1 stars 21 forks source link

isSnowDay #33

Open alexanderGGreenberg opened 6 years ago

alexanderGGreenberg commented 6 years ago

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]