add hints to exercises

This commit is contained in:
Cody Loyd
2017-10-24 15:10:20 -05:00
parent cf1759dc97
commit dd17d8ac8b
7 changed files with 43 additions and 4 deletions
+3
View File
@@ -9,3 +9,6 @@ leapYears(2000) // is a leap year: returns true
leapYears(1985) // is not a leap year: returns false
```
## hints
- use an `if` statement and `&&` to make sure all the conditions are met properly