Skip to main content
1 of 3
Robin Ryder
  • 15.8k
  • 2
  • 25
  • 71

R, 42 bytes

for	(i in	 1:50) write(c(i*+2- 1,	"E"),1 ) 

Try it online!

Includes a few tabs instead of spaces. Uses newlines as separators.

cat and print are unusable, but luckily write is OK. I had to resort to i*+2 -1 instead of i*2-1 to keep the alternation.

Robin Ryder
  • 15.8k
  • 2
  • 25
  • 71