Castelo de cartas (versão 1)

25

Versão 2 aqui .

Desafio simples: dado um número inteiro, compre um baralho de cartas com o número especificado de histórias. Se o número for negativo, desenhe a casa de cabeça para baixo. Exemplos:

Input: 2
Output:

 /\
 --
/\/\

Input: 5
Output:

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

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

Input: -3
Output:

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

A entrada pode ser numérica ou uma sequência de caracteres. A saída deve ser exatamente como mostrada, com espaços à esquerda e / ou à direita e novas linhas permitidas.

Isso é , portanto, pode ganhar o programa / função mais curto para cada idioma!

Charlie
fonte
Isso vem da caixa de areia .
1077 Charlie
As novas linhas principais são permitidas?
Shaggy
@ Shaggy sim, você também pode ter espaços em branco e novas linhas, desde que você compre o baralho de cartas exatamente como mostrado. Não me importo se não estiver alinhado à esquerda da tela.
10777 Charlie
Podemos jogar e erro input=0?
Rod
@Rod Se isso produz saída vazia é permitido por padrão
Luis Mendo

Respostas:

14

Python 2 , 97 95 94 92 bytes

-2 bytes graças a Luka
Esta versão produz uma exceção n=0, mas sem imprimir nada

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)

Experimente online!

Versão sem erro, Python 2, 94 bytes

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)

Experimente online!

Cajado
fonte
x=n>0 or-1=>x=n>0or-1
Zacharý
@ Zachary não funcionar, 0orserá interpretado como um número octa
Rod
Cortar mais 2 bytes: m=abs(n). Então, em vez de xcolocar n/m, em vez de x*nputm
Luka
9

05AB1E , 30 29 24 bytes

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

Experimente online!

Explicação

Ä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
Emigna
fonte
7

PHP , 125 bytes

entrada de nova linha inicial negativa

inserir nova linha à direita

for($s=str_pad;++$i<$b=2*abs($argn);)$t.=$s($s("",2*ceil($i/2),["-","/\\"][1&$i]),$b," ",2)."
";echo$argn>0?$t:$t=strrev($t);

Experimente online!

PHP , 130 bytes

for(;++$i<$b=2*abs($a=$argn);)echo($s=str_pad)($s("",2*abs(($a<0?$a:$i&1)+($i/2^0)),["-",["/\\","\/"][0>$a]][1&$i]),$b," ",2)."
";

Experimente online!

Jörg Hülsermann
fonte
5

MATL , 39 bytes

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

Experimente online!

Explicação

|         % 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
Luis Mendo
fonte
1
Cara, isso foi rápido !! Espero que a versão 2 não vai ser tão fácil ... :-)
Charlie
4

C (gcc) , 169171 173 160 164 bytes

#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 bytes para erro de maiúsculas e minúsculas.

Experimente online!

Ungolfed (207 bytes após remover todos os espaços e nova linha):

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("--");;
  }
}
Keyu Gan
fonte
1
@officialaimm fixed! obrigado
Keyu Gan
4

Carvão, 31 28 27 bytes

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

Experimente online! Link é a versão detalhada do código. Eu tinha cerca de 4 respostas diferentes de 32 bytes e encontrei isso. Editar: salvou 3 4 bytes executando a absmanipulação de cadeia de caracteres. Explicação:

   ⪪θ-                          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
Neil
fonte
Eu sabia que uma resposta ao carvão terminaria ¿‹θ⁰‖T↓. :-)
Charlie
Quando Charcoal é derrotado por 05AB1E em um desafio de arte ASCII O_o
Gryphon - Reinstate Monica
@Gryphon Eu não tenho um único byte abs...
Neil
É verdade que é estranho ver isso. Faz você pensar no que o mundo está chegando.
Gryphon - Restabelece Monica
Sim, seriam 23 bytes com um abs embutido. (Parabéns por 48K, aliás)
ETHproductions
2

Japonês , 40 38 bytes

-2 bytes graças a @Shaggy

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

Experimente online!

Explicação

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
Justin Mariner
fonte
38 bytes .
Shaggy
2

Gaia , 21 bytes

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

Explicação

:                      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
Gato de negócios
fonte
1

Mathematica, 140 bytes

(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)&
J42161217
fonte
1

Retina , 116 111 105 bytes

isso ficou muito tempo: /

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

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

Experimente online!

entrada negativa é denotada como ~n

ovs
fonte
1

Perl 5 , 100 + 1 (-n) = 101 bytes

$/=$_>0?'/\\':'\\/';push@r,$_=$"x--$q.$/x$_,y|/\\|-|r for 1..($q=abs);pop@r;say for$_<0?reverse@r:@r

Experimente online!

Xcali
fonte