Skip to main content
3 of 4
added 362 characters in body
Shaggy
  • 44.9k
  • 4
  • 39
  • 95

#Japt -R, 13 bytes

`¬¶n`¬Ë²p5+E

Try it


##Explanation ¬¶n¬Ë²p5+E ¬¶n :Compressed string "conemon" ¬ :Split Ë :Map each character at 0-based index E ² : Repeat twice p5+E : Repeat 5+E times :Implicitly join with new lines and output

Shaggy
  • 44.9k
  • 4
  • 39
  • 95