Greg_Heffley

Greg_Heffley

If you are just a plain coder like just keep trying.
I am a Python Coder, JavaScript, and Java
if you need me please mention me by using @Greg_Heffley
I like to fix problems like this below me
PROBLEM: People losing there on CodeCombat (CC)
here is a code I did like 3 years ago
:slight_smile:
def accum(s):
out =
acc = 1
for i in s:
out.append(i*(acc))
acc += 1
return ‘-’.join(out).title()