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

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

Required fields*

Unfurl a string

Given a square string, produce all the output for the string at every stage of unfurling.

The string must unfurl in a clockwise direction one quarter turn at a time.

Examples

Input:

A

Output:

A

Note: I'll also accept the input duplicated for this particular test case only if this helps reduce your byte count.

Input:

DC
AB

Output:

DC
AB
 D
ABC
ABCD

Input:

GFE
HID
ABC

Output:

GFE
HID
ABC
 HG
 IF
ABCDE
 IH
ABCDEFG
 I
ABCDEFGH
ABCDEFGHI

Input:

JIHG
KPOF
LMNE
ABCD

Output:

JIHG
KPOF
LMNE
ABCD
 LKJ
 MPI
 NOH
ABCDEFG
 NML
 OPK
ABCDEFGHIJ
 ON
 PM
ABCDEFGHIJKL
 PO
ABCDEFGHIJKLMN
 P
ABCDEFGHIJKLMNO
ABCDEFGHIJKLMNOP

Rules

This is so the shortest code in bytes wins.

  • Any reasonable format can be used for I/O assuming it is consistent.
  • Spaces must be used to pad the top lines of the output.
  • Must be able to handle input of all printable characters (including space: \x20-\x7e):
 !"#$%&'()*+,-./0123456789:;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
  • Leading/trailing whitespace is allowed.
  • You can assume the string will always be a square.
  • All standard loopholes are forbidden.

Inspiration: Write a square program that outputs the number of times it has been "unrolled".

Answer*

Draft saved
Draft discarded
Cancel
2
  • \$\begingroup\$ I think [::-1][1:] can be [-2::-1], like in Lynn's answer. \$\endgroup\$ Commented Aug 23, 2017 at 21:38
  • \$\begingroup\$ @Quelklef Thanks a lot! \$\endgroup\$ Commented Aug 23, 2017 at 21:40

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