ASCII 육각형 체인


13

문제

길이가 x각각 육각형 체인을 길게 그리십시오.y

입력

x -체인 길이 <= 50

y -각 변의 길이 <= 50

x=1,y=1

 _
/ \
\_/

x=4,y=1

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

x=3,y=2

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

규칙

  • 바이트 단위의 가장 짧은 유효한 답변이 이깁니다.

  • 선행 및 후행 줄 바꿈이 허용됩니다.

  • 후행 공백이 허용됩니다.



2
의무적 Hexagony 답변을 기다리는 중 ...
LLlAMnYP

2
@LLlAMnYP 아무튼 지금 ...
Martin Ender

@ user202729 지금 작성하면 어떻게되는지 알 필요가 없습니다.
LiefdeWen

Hexagony의 첫 번째 줄 . 나머지 부분의 가장자리 크기를 늘려야합니다.
user202729

답변:


8

, 34 바이트

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

온라인으로 사용해보십시오! 링크는 자세한 버전의 코드입니다. 주문 크기, 개수의 매개 변수를 사용합니다. 설명:

Nθ

육각형 크기를 입력하십시오.

FN«

입력 된 육각 수를 반복합니다.

M∧﹪ι²⊗θ↓

대체 육각형에서는 다음 육각형이 오른쪽 위가 아닌 오른쪽 아래로 그려 지도록 전체 육각 아래로 이동하십시오.

P×_θ

바닥을 그립니다.

←↖θ

왼쪽 하단을 그립니다.

→↗θ

왼쪽 상단을 그립니다.

×_θ

상단을 그립니다.

↓↘θ

오른쪽 상단을 그립니다.

←P↙θ

오른쪽 하단을 그립니다.

다음 육각형이 오른쪽 상단에 있다고 가정합니다.


4

파이썬 2 , 254224 바이트

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)])

온라인으로 사용해보십시오!


파이썬 2 , 264 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.12 , 32 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

자바 스크립트 (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

캔버스 , 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.