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.
Great kata, good practice with logical operators!
Your code fails because it checks that the password contains either a number or a special character. Special characters are not mentioned in the kata decription, only a number needs to be present.
Python3
I encountered a situation where my written solution failed one or two tests, but it was eventually accepted after clicking the submit button a few times.
Here is the case as an example that causes issues:
"=ICT,]|FIgw;%eA,LjKJ{QQ*p|v"
Thank you, much appreciated.
Use
console.log()
to see the input.Issue
tag is for kata issue not your code issue,you should choose
Question
to looking for help.Your checking rules is not what description says, there just 4 rules and you have 5.
This comment is hidden because it contains spoiler information about the solution