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.
try a more pythonic solution
I like this solution because it is readable and understandable when reading it.
Personally, I foolishly used a list to create a string with the result.
I think its cheating if you used a method function, that kills the aim of this challenge.
Just like mine. No imports needed, easy to read and debug if needed
Same exept i did word = word.lower()
Хороший код , приятный глазу.
Жаль , что нельзя поставить Best Practices и Clever одновременно!
Could you please describe how we can make this code faster?
easy to read,nice
First Kata, where I can't uderstand what I need to do =/
Hmmm.Short and precise But the time complexity is what We will have issues with
Looking at this char in word is O(n)
And also word.count() isn't really O(n) but we can give it that
Therefore this isn't really that efficient but good enough since the strings are not HOOGE lol
nice got the exact same code (besides the names)
my solution...but its that really 6kyu?
Cleanest with best readability!
Simple and Clean!
THIS. I can easily read the dang code and if I need to change it in the future, I won't have to decipher some crazy one line code.
Loading more items...