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.
В условии ошибка:
90 <= score <= 100
надо:
90 >= score <= 100
80 >= score < 90
70 >= score < 80
60 >= score < 70
0 >= score < 60
Не понимаю: ns
Должно быть true или false???
Я так понимаю, что true. Мой код работает правильно и выдает true, но тест показывает ошибку:
With walk = ns
Expected
: true
to equal
: false
Тесты для GO неправильные.
1+1=1
1+0=1
1+0=1
0+0=0
0 - false
1 - true
The test passed, but then an error occurred. I can't figure out what's wrong.
Условие очень непонятно...