Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
#R, 47 42 41 bytes
write(rep(LETTERS,27)[-27*1:26],1,26,,'')
Try it online!
Generates 27 alphabetes, removes 27-th letters and prints in 26 columns.
Improvement inspired by @Giuseppe's solution.
#R, 47 4242 41 bytes
Improvement inspired byImprovement inspired by @Giuseppe's solution.
write(rep(LETTERS,27)[-27*1:26],'',26,,'')
#R, 47 42 bytes
#R, 4747 42 bytes
Generates 27 alphabets and changes appropriatealphabetes, removes 27-th letters to newlinesand prints in 26 columns.
x=repwrite(rep(LETTERS,27);x[27*1[-27*1:26]='\n';cat(x26],sep='''',26,,'')
#R, 47 bytes
Generates 27 alphabets and changes appropriate letters to newlines.
x=rep(LETTERS,27);x[27*1:26]='\n';cat(x,sep='')