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.
How do you find random test scenerio? I have problem with one and I cannot solve it.
I like the way you calculated years and so on.
I like this solution the most. It's clear.
This comment is hidden because it contains spoiler information about the solution
I like that solution with using boolean, very nice :)
This comment is hidden because it contains spoiler information about the solution
Just keep trying to simplify your goal. Be as general as possible. What data type should every element of the string be?
Why there is question mark ? instead of e.g. 'A', like ('T', '?')?
The closing quote is in the next line, so the char isn't a literal whitespace.
:)
Hi, i don't understand this fail test:
ValidatePin should return false in various edge cases
Test Failed
Wrong output for "123
"
Expected: False
But was: True
Ok, there shouldn't be whitespace in pin so put that condition : pin.Contains(" ") ? false, nut it's not working! Why it is so?