回転スパイラル


12

文字のらせんを表すテキストの正方形が与えられたら、それを回転させてください!

スパイラルは中央から始まり、反時計回りに外側の端に移動し、中央のから始まります。

987
216
345

これは文字列に変換されます123456789。回転はに行われるため、1つの位置に回転すると、になります234567891。これは次のように表されます。

198
327
456

入力

入力は、スパイラルとそれを回転させる距離で構成されます。

距離は常に正の整数またはゼロであり、言語のデータ型の制限で制限できます。

スパイラルは、選択した行区切り文字(区切り文字なしを含む)を持つ文字列として解釈する必要があります。これは常に区切り文字を含まない正方形で、辺の長さが奇数です。

すべての文字が英数字[A-Za-z0-9]であると仮定します。

出力

出力は回転したスパイラルです。これは、複数行の正方形(印刷または返品)である必要があります。

入力

3
tne
atd
bin

出力

bat
nit
den

入力

18
efilr
naepo
umshf
tootr
butte

出力

rettu
omseb
oofft
trliu
hpean

これはコードゴルフで、スコアは通常どおりバイト単位でカウントされます。

回答:


6

CJam、45 44バイト

]]l~LqN/{(W%@+\zW%}h;m<{1$,/(W%a@W%z+\s}h;N*

ここでテストしてください。

説明

怠zyな解決策:スパイラルを展開し、CJamの組み込み配列回転を使用して、スパイラルを再び巻き上げます。

]]       e# Push [""]. We'll later use this to roll up the spiral.
l~       e# Read the integer and evaluate it.
L        e# Push an empty string: we'll unroll the input into this.
qN/      e# Read the spiral and split it into lines.
{        e# While the top of the stack is truthy...
  (W%    e#   Pull the first line off the spiral and reverse it.
  @+     e#   Pull up the string we've built so far and prepend the reversed line.
  \zW%   e#   Swap with the remaining spiral, and rotate the spiral.
}h       e# This terminates when the centre character has been added to the string and
         e# the spiral becomes an empty array.
;        e# Discard the empty array.
         e# Note that we've unrolled the spiral from outside in, but we've also built up
         e# the string in reverse, which gives us the string from inside out.
m<       e# Rotate to the left by the given number of characters.
{        e# While the top of the stack is truthy...
  1$,    e#   Copy the spiral so far and get the number of lines.
  /      e#   Split the string into chunks of that size.
  (W%a   e#   Pull off the first chunk, reverse it and wrap it in an array.
  @zW%   e#   Pull up the spiral so far, rotate it.
  +      e#   Prepend the chunk to the spiral as a line.
  \s     e#   Swap with the other chunks and flatten them into a string again.
}h       e# This terminates when the string has been used up completely.
;        e# Discard the empty string.
N*       e# Join the lines with linefeed characters.
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.