Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Code Golf

Return to Revisions

2 of 2
added 422 characters in body
Mr. Xcoder
  • 42.9k
  • 9
  • 87
  • 221

Python 3, 59 bytes

lambda l:[' '*i+'%c '%(i+65)*-~i for i in range(ord(l)-64)]

Try it online!

Python 3, 61 bytes

lambda l:[' '*i+-~i*(chr(i+65)+' ')for i in range(ord(l)-64)]

Try it online! (link to pretty-print version)

Mr. Xcoder
  • 42.9k
  • 9
  • 87
  • 221

AltStyle によって変換されたページ (->オリジナル) /