카드 하우스 (버전 1)


25

여기에 버전 2가 있습니다 .

간단한 도전 : 정수가 주어지면 주어진 이야기 수로 카드 집을 그립니다. 숫자가 음수이면 집을 거꾸로 그립니다. 예 :

Input: 2
Output:

 /\
 --
/\/\

Input: 5
Output:

    /\
    --
   /\/\
   ----
  /\/\/\
  ------
 /\/\/\/\
 --------
/\/\/\/\/\

Input: 0
Output: <empty, whitespace or newline>

Input: -3
Output:

\/\/\/
 ----
 \/\/
  --
  \/

입력은 숫자 또는 문자열 일 수 있습니다. 선행 및 / 또는 후행 공백과 줄 바꿈이 허용 된대로 출력이 표시된대로 정확하게 표시되어야합니다.

이것은 이므로 각 언어마다 가장 짧은 프로그램 / 기능이 이길 수 있습니다!


이것은 샌드 박스 에서 온 것 입니다.
Charlie

선행 개행이 허용됩니까?
얽히고 설킨

@Shaggy 예, 표시된대로 정확하게 카드 하우스를 그리는 한 선행 공백과 줄 바꿈을 사용할 수 있습니다. 화면 왼쪽에 정렬되지 않은 경우에는 신경 쓰지 않습니다.
Charlie

우리가 던지고 실수 할 수 있습니까 input=0?
Rod

@Rod 빈 출력을 생성하면 기본적으로 허용됩니다.
Luis Mendo

답변:


14

파이썬 2 , 97 95 94 92 바이트

Luka 덕분에 -2 바이트이
버전에서는 예외를 생성 n=0하지만 아무것도 인쇄하지 않습니다.

n=input()*2
m=abs(n)
for i in range(2,m+1)[::n/m]:print(i/2*'/-\-'[i%2::2][::n/m]).center(m)

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

오류가없는 버전, Python 2, 94 바이트

n=input()*2
x=n>0 or-1
for i in range(2,x*n+1)[::x]:print(i/2*'/-\-'[i%2::2][::x]).center(n*x)

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


x=n>0 or-1=>x=n>0or-1
Zacharý

@ Zacharý가 작동하지 않습니다, 0or8 진수로 해석됩니다
Rod

2 바이트 더 잘라 내기 : m=abs(n). 그런 다음, 대신 x넣어 n/m대신, x*nm
루카

9

05AB1E , 30 29 24 바이트

ÄF„--Nׄ/\N>×}).C∊2ä¹0‹è

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

설명

ÄF                         # for N in [0 ... abs(input-1)] do:
  „--N×                    # push the string "--" repeated N times
       „/\N>×              # push the string "/\" repeated N+1 times
             }             # end loop
              )            # wrap stack in a list
               .C          # pad strings on both sides to equal length
                 ∊         # vertically mirror the resulting string
                  2ä       # split in 2 parts
                    ¹0‹    # push input < 0
                       è   # index into the the list with the result of the comparison


5

MATL , 39 바이트

|:"G|@-:~'/\'G0<?P]@E:)htg45*c]xXhG0<?P

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

설명

|         % Implicitly input, N. Absolute value
:"        % For k from 1 to that
  G|      %   Push absolute value of N again
  @-      %   Subtract k
  :       %   Range [1 2 ... N-k]
  ~       %   Convert to vector of N-k zeros
  '/\'    %   Push this string
  G0<     %   Is input negative?
  ?       %   If so
    P     %     Reverse that string (gives '\/')
  ]       %   End
  @E      %   Push 2*k
  :       %   Range [1 2 ... 2*k]
  )       %   Index (modularly) into the string: gives '/\/\...' or '\/\/...'
  h       %   Horizontally concatenate the vector of zeros and the string. Zeros
          %   are implicitly converted to char, and will be shown as spaces
  t       %   Duplicate
  g       %   Convert to logical: zeros remain as 0, nonzeros become 1
  45*c    %   Multiply by 45 (ASCII for '=') and convert to char
]         % End
x         % Delete (unwanted last string containing '=')
Xh        % Concatenate into a cell array
G0<       % Is input negative?
?         % If so
  P       %   Reverse that cell array
          % Implicit end. Implicit display

1
남자, 그것은 빠르다!! 버전 2가 그렇게 쉬워지지 않기를 바랍니다 ... :-)
Charlie

4

C (gcc) , 169171 173 160 164 바이트

#define F(A,B,C)for(i=A;B--;)printf(C);
#define P puts("");F(y,i," ")F(abs(n)-y
s,i,x,y;f(n){x=n<0;for(s=x?1-n:n;s--;){y=x?-n-s:s;P,i,x?"\\/":"/\\")y+=x;P,s>x&&i,"--")}}

음수 버그의 경우 +13 바이트

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

ungolfed (모든 공백과 줄 바꿈을 제거한 후 207 바이트) :

s, i, x, y;
f(n) {
  x = n < 0;
  for (s = x ? 1 - n : n; s--;) {
    y = x ? - n - s : s;
    puts("");
    for (i = y; i--;) printf(" ");
    for (i = abs(n) - y; i--;) printf(x ? "\\/" : "/\\");;
    y += x;
    puts("");
    for (i = y; i--;) printf(" ");
    for (i = abs(n) - y; s > x && i--;) printf("--");;
  }
}

1
@officialaimm 고정! 감사합니다
Keyu Gan

4

숯, 31 28 27 바이트

FI⊟⪪θ-«←ι↓→/…\/ι↙»‖M¿‹N⁰‖T↓

온라인으로 사용해보십시오! 링크는 자세한 버전의 코드입니다. 나는 약 4 개의 다른 32 바이트 대답을 가지고 있었고 이것을 발견했다. 편집 : 문자열 조작을 사용하여 3 4 바이트를 절약했습니다 abs. 설명:

   ⪪θ-                          Split the input (θ = first input) on -
  ⊟                             Take the (last) element
 I                              Convert it to a number i.e. abs(θ)
F     «                         Repeat that many times
       ←ι                       Print half of the -s
         ↓                      Position for the /\s
          →/                    Print the first /
            …\/ι                Print half of any remaining \/s
                ↙               Position for the next row of -s
                 »              End of the loop
                  ‖M            Mirror everything horizontally
                    ¿‹N⁰        If the input was negative
                        ‖T↓     Reflect everything vertically

나는 차콜 답변이로 끝날 것이라는 것을 알았습니다 ¿‹θ⁰‖T↓. :-)
Charlie

ASCII 아트 챌린지 O_o
Gryphon-Reinstate Monica

@Gryphon 나는 1 바이트가 없습니다 abs...
Neil

사실, 이것을 보는 것은 이상합니다. 세상이 어떻게 될지 궁금해합니다.
그리폰-복원 모니카

예, 이것은 abs가 내장 된 23 바이트입니다. (48K, btw에 축하)
ETHproductions

2

apt , 40 38 바이트

@Shaggy 덕분에 -2 바이트

o½½@aXc)ç +"--/\\\\/"ò gYv *Ug)pXc a÷

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

설명

o½½@aXc)ç +"--/\\\\/"ò gYv *Ug)pXc a÷              // implicit: U = input integer
o.5,.5,XYZ{UaXc)ç +"--/\\\\/"ò gYv *Ug)pXc a} qR    // ungolfed
o.5,.5,                                             // array [.5,U] with step size .5
       XYZ{                                 }       // mapped by the function: (X = value, Y = index)
           UaXc)                                    //   absolute diff between U and ceil(X)
                ç                                   //   " " times that value
                  +"--/\\\\/"ò g      )             //   plus ["--","/\","\/"].get(...
                                Yv                  //     if Y is even, 1, else 0
                                   *Ug              //     times sign(U)
                                       pXc a        //   repeated abs(ceil(X)) times
                                              qR    // all that joined with newlines


2

가이아 , 21 바이트

:┅“/\\“--”צ¦_€|ḣ¤ọ×ṣ

설명

:                      Push 2 copies of the input
 ┅                     Get the range to the input. If positive: [1 .. n]. If negative: 
                       [-1 .. n]. If zero: [0].
  “/\\“--”             Push ["/\", "--"]
          צ¦          Repeat both of those strings by each number in the range. Strings go
                       in reverse order when repeated a negative number of times.
             _         Flatten the list
              €|       Centre-align the rows of the list
                ḣ      Remove the last row (the "--"s on the bottom)
                 ¤     Swap (bring input back to the top)
                  ọ    Sign: -1 for negative, 0 for 0, 1 for positive
                   ×   Repeat the list that many times; (-1 × list) reverses it
                    ṣ  Join with newlines and implicitly output

1

Mathematica, 140 바이트

(T=Table;z=Column;B[a_]:=""<>"/\\"~T~a;If[#>0,m=0,m=Pi];z[Join[z/@T[{B@i,""<>"--"~T~i},{i,Abs@#-1}],{B@Abs@#}],Alignment->Center]~Rotate~m)&

1

망막 , 116 (111) 105 바이트

이것은 너무 길다 : /

\d+
$*
+`^~?( *1*)1
 $1¶$&¶_$&
.*$

+`(_.*)1
$1--
1
/\
Ts`/\\`\\/`.*~.*
+`(.*)¶((.*¶)*)(~.*)
$2$4¶$1
~|_

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

음의 입력은 다음과 같이 표시됩니다 ~n


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.