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.
you can work thu this like so
!!
is shorter than a 5-character chunk, so it must be padded withu
chars!!uuu
[33, 33, 117, 117, 117]
[0, 0, 84, 84, 84]
(0 * 85**4) + (0 * 85**3) + (84 * 85**2) + (84 * 85**1) + (84 * 85**0)
=614124
[0, 9, 94, 236]
u
were added to the padding, drop 3 bytes from your result:[0, 9, 94, 236]
becomes[0]
[0]
as ascii string:'\0'
or'\x00'
or'\u0000'
– each are equivalentanswer:
<~!!~>
decodes to a string with a single null byte:'\0'
Hi all. I would like to know the output for the input: '<
!!>' ?I run my code and the system throws:
Expected: , instead got: ,
why?