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.
No problem! Glad you got it all figured out :)
Uhh, the 63 you are seeing is when you print out the byte in this line:
System.out.println((byte) cArray[1]);
. That has nothing to do with the problem. When you see the 63, the actual word being tested is?abc:abc
which should result in afalse
answer. If I am misunderstanding you, let me know.Also, to give you a hint, your if statement here:
will not always work out. For example, if I sent
123
that should betrue
, but you will return false.What language is your issue in? I do not see any test cases that require
63
to befalse
.