ASCII六角形チェーン


13

問題

xそれぞれy長さのある六角形のチェーンを長く描きます

入力

x -チェーンの長さ<= 50

y -各辺の長さ<= 50

x=1,y=1

 _
/ \
\_/

x=4,y=1

 _   _
/ \_/ \_
\_/ \_/ \
  \_/ \_/

x=3,y=2

  __      __
 /  \    /  \
/    \__/    \
\    /  \    /
 \__/    \__/
    \    /
     \__/

ルール

  • バイト単位の最短の有効な回答が優先されます。

  • 先頭および末尾の改行が許可されます。

  • 末尾の空白が許可されます。



2
義務的な六角形の答えを待っています...
LLlAMnYP


@ user202729今書いた場合、何が起こるかを知る必要はありません。
LiefdeWen

六角形の最初の行。明らかに、残りのエッジサイズを大きくする必要があります。
user202729

回答:


8

、34バイト

NθFN«M∧﹪ι²⊗θ↓P×_θ←↖θ→↗θ×_θ↓↘θ←P↙θ↗

オンラインでお試しください!リンクは、コードの詳細バージョンです。注文サイズ、カウントでパラメーターを取得します。説明:

Nθ

六角形のサイズを入力します。

FN«

入力された六角形の数をループします。

M∧﹪ι²⊗θ↓

代替六角形では、次の六角形が右上ではなく右下に描画されるように、六角形全体を下に移動します。

P×_θ

下を描きます。

←↖θ

左下を描画します。

→↗θ

左上を描画します。

×_θ

上部を描画します。

↓↘θ

右上を描画します。

←P↙θ

右下を描画します。

次の六角形が右上にあると仮定します。


4

パイソン2254の 224バイト

def f(n,w):
 a=w*2
 for j in range(1+w*3):print''.join([[[' ',[' /'[i%w==-j%w],' \\'[i%w==~-j%w]][i/a+~-j/w&1]][(j>0)*(i/w>=(j>a))*((i/w/n<2)or(n%-2<~-j/w<3-n%2))],' _'[(j+i/w%4/2*w)%a<(i<n*a)]][i/w%2]for i in range(-~n*a)])

オンラインでお試しください!


Pythonの2264の 229バイト

def f(n,w):
 c=2*w;r=[[' ']*(-~n*c)for _ in' '*(1+w*3)]
 for i in range(w):
  for j in range(n):a=i+j*2*w;b=j%2*w;r[b][w+a],r[c+b][w+i+j*c],r[b+w-i][a],r[b+c-i][a+c],r[b+w-~i][a],r[b-~i][a+c]=r'__//\\'
 for l in r:print''.join(l)

オンラインでお試しください!


@ovsどうもありがとう:)
TFeld


3

SOGL V0.1232の 31 バイト

ā.{e╚øΚe╔*ο⁴↔±┼┼╬±fe«*If2%e*I╬5

ここで試してみてください!

説明:

ā                              push an empty array - the canvas
 .{                            repeat input times
   e╚                            push a diagonal the length of the variable E (by default: next input)
     øΚ                          prepend a line to it
       e╔*ο                      push ["_"*E]
           ⁴                     copy that diagonal
            ↔±                   and reverse it horizontally
              ┼┼                 add the 3 parts together
                ╬±               and palindromize vertically - one hexagon is finished
                  fe«*I          push counter*E*2 + 1 (the counter is 0-based)
                       f2%e*I    push counter%2 * E + 1
                             ╬5  at [counter*E*2+1; counter%2*E+1] insert the hexagon in the canvas


1

JavaScript(ES6)、215バイト

カリー化構文の入力を受け取ります(y)(x)

y=>(F=(x,c=!(p=y-1,w=x*y*2+y,a=[...(' '.repeat(w++)+`
`).repeat(3*y+1)],g=(d,k)=>k!=y?g(d,-~k,a[p+=d]='_\\/'[c%3]):c++))=>x--?F(x,g(1),g(w+1),p++,g(w-1),g(-1),p+=w,g(~w),p--,g(1-w),p+=(c/6&1?w:-w)*y-w+y*2):a.join``)

デモ


0

Canvas、25 バイト

ø╶{╷⁷«×¹2%⁷×╵⁷⇵_× ⁷/∔×╬│╋

ここで試してみてください!

説明(一部の文字は固定幅に見えるように変更されています):

ø╶{╷⁷«×¹2%⁷×╵⁷⇵_× ⁷/∔×╬│╋
ø                          push an empty canvas
 ╶{                        for 1..input
   ╷                         decrease (so this starts with 0)
    ⁷«×                      multiply by X*2; X coordinate of new hexagon done
       ¹2%                   push 0-indexed counter%2
          ⁷×                 multiply by X
            ╵                and increment; Y coordinate done
             ⁷⇵              push ceil(X/2), saving the remainder
               _×            repeat "_" that many times
                  ⁷/         push " " and an ASCII diagonal with size X
                    ∔        prepend verticall the space before the diagonal
                              done so there's space for the underscores
                     ×       and append the underscores horizontally to the diagonal
                      ╬│     quad-palindromize with Y overlap of 1
                              and X overlap of the remainder taken before
                        ╋    and at the before defined coords ((I-1)*X*2; (i%2)*X + 1)
                              insert the hexagon in the canvas
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.