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.
exam >= 90
is also wrong in your code. As well as several other conditions, check them all again.If it's not difficult for you, then could you tell us which tests give the wrong answer for
projects > 10
andprojects >= 10
.Obviously with exam = 0 and projects = 10 neither of those conditions is true. The same with exam = 32.
Check the conditions and the operators you're using. 10 isn't more than 10.