Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Thanks, glad you like it:-) - by the way good work, hope you lost not too much time;-)...
Thanks, I'm glad you like it. Hopefully enough people will complete it that it makes it out of beta!
I think your
and
is messing you up here. Looking at your logic, do the expressions on both sides of yourand
operator evaluate to true when it's sunny and the rain chance is < 0.5? In that case I think you want to be returning true but I don't think your logic matches that.Perhaps a simpler way to think about it being sunny is to say "Take an umbrella if it's rainint OR if it's cloudy and looks like rain OR if it's sunny and the forecast is for rain."
Added example tests just now, thank you for the suggestion.