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.
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.