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.
It doesn't work because it's wrong. And it won't work anywhere. Not a kata issue.
This comment is hidden because it contains spoiler information about the solution
No, they shouldn't. What is
i
there? Your code being wrong is not a kata issue.text[i] == 'w' or text[i] == 's' did not work, even though it should like in normal python.
lets take your example first row "90 >= score <= 100", lets say score is 95.
90 >= 95 <= 100
it will read as 90 is bigger or equal to 95, which is less or equal to 100. 90 is not bigger or equal to 95.
No. Stop raising bogus issues and write in english.
В условии ошибка:
90 <= score <= 100
надо:
90 >= score <= 100
80 >= score < 90
70 >= score < 80
60 >= score < 70
0 >= score < 60
That walk doesn't take exactly 10 minutes. Not a kata issue, use
Question
label next time.Не понимаю: 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.
Условие очень непонятно...