Letters challenge
R, 50 47 45 bytes
This is some serious R abuse. I create a quote
R expression C(O,N,E,M,O,N)
and feed it into the string repeat function strrep
, which kindly coerces each name inside the quote into a string. Shorter than scan
!
write(strrep(quote(C(O,N,E,M,O,N)),5:11*2),1)
Try it online!
Python 2, 36 bytes
i=8
for c in'conemon':i+=2;print c*i
Try it online!
K (ngn/k), 20 19 bytes
(2*5+!7)#'"conemon"
Try it online!