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.
Pardon me, You're correct.
There is something wrong with the test cases that include 's' or 'S'.
's', after 13 positions shift, should equal 'h' instead of 'f'.
Analogously, 'S' should equal 'H' instead of 'F'.
Groovy Translation
There is no
more effective
way to solve this problem. At the very least, you would need to travese the string which takesO(N)
. For extra space complexity, the variablecrypt
to store each key-value pair hasO(1)
space complexity since its size is not dependent on the size of the input string. If not consdiering the output string to be returned, the space complexity would beO(1)
as well.This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
you keep incrementing the
str
pointer. When youreturn
it, it is pointing to the nul-terminator, so it's effectively an empty string. Also, you overflow thechar
datatype by adding13
to the last ASCII letters (e.g.'z' + 13
)"The one you linked is deciphering it, this one is encoding it, they're not the same."
...yes they are?
eg:
The encode function is exactly the same as the decode one..
It is already specified how they should be handled in description.
Anyone reading, feel free to continue discussing, but since this has nothing to do with improving the kata I'm marking this as resolved.
You are not able to nest functions?
it's no longer there
This comment is hidden because it contains spoiler information about the solution
You are correct. I just messed the registers up. Have a nice day.
Loading more items...