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.
I'm getting exactly the same result, 1064. I bet this challenge is not explained correctly.
Read this: https://www.codewars.com/kata/551f23362ff852e2ab000037/discuss#633b43e52069d5b029de0cf8
Why exactly are you angry? Angry because your solution is incorrect, or angry because you don't understand the task? Or maybe because code formatting is difficult?
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Use spoiler flag next time.
This comment is hidden because it contains spoiler information about the solution
if you need write "Hello WORLD"
you must x = "abcdefghijklmnopqrstuvwxyz"
text_print = ''
for i in list(x):
if i == "h":
text_print += i
if i == "e":
text_print += i
if i == "l":
text_print += i + i
if i == "o":
text_print += i
........