Skip to main content

Timeline for Print a Tabula Recta!

Current License: CC BY-SA 3.0

7 events
when toggle format what by license comment
Jul 30, 2016 at 21:25 history edited Copper CC BY-SA 3.0
Saved a byte thanks to xnor
Jul 30, 2016 at 21:24 comment added xnor You can do one byte shorter than hardcoding the alphabet: s='%c'*26%tuple(range(65,91)).
Jul 30, 2016 at 21:09 comment added xnor Your loop can be done as for x in s:print s;s=s[1:]+x.
Jul 30, 2016 at 19:40 history edited Copper CC BY-SA 3.0
Saved 4 bytes thanks to LeakyNun and TheBikingViking
Jul 30, 2016 at 17:40 comment added TheBikingViking You can do a[1:] instead of a[1:26].
Jul 30, 2016 at 16:49 comment added Leaky Nun Apparently a="ABCDEFGHIJKLMNOPQRSTUVWXYZ" is shorter.
Jul 30, 2016 at 16:29 history answered Copper CC BY-SA 3.0