Desenhe algumas estrelas ASCII

15

Escreva um programa ou função que desenhe uma estrela ASCII, considerando o tamanho dos braços como entrada.

Aqui está uma estrela de tamanho 1

_/\_
\  /
|/\|

Aqui está uma estrela de tamanho 2

   /\
__/  \__
\      /
 \    /
 | /\ |
 |/  \|

Aqui está uma estrela de tamanho 3

     /\
    /  \
___/    \___
\          /
 \        /
  \      /
  |  /\  |
  | /  \ |
  |/    \|

E assim por diante.

Entrada

Um único número inteiro positivo em qualquer formato conveniente ,n > 0 .

Resultado

Uma representação em ASCII de uma estrela, seguindo as regras acima. Novas linhas iniciais / finais ou outro espaço em branco são opcionais, desde que os pontos sejam alinhados adequadamente.

Regras

  • Um programa completo ou uma função são aceitáveis. Se uma função, você pode retornar a saída em vez de imprimi-la.
  • Lacunas padrão são proibidas.
  • Isso é portanto todas as regras usuais de golfe se aplicam e o código mais curto (em bytes) vence.
AdmBorkBork
fonte
6
É apenas a minha tela ou as estrelas parecem anormalmente altas e magras?
caird coinheringaahing 02/09
2
ASCII estúpido e sua falta de inclinações rasas ...
totallyhuman
@cairdcoinheringaahing A fonte usada pelo SE não é quadrada - há um espaço em branco significativo entre as linhas, o que aumenta a distorção.
AdmBorkBork 5/09

Respostas:

12

Carvão , 20 17 bytes

-3 bytes graças a Neil.

Nν↙ν↑↑ν↖ν ×_ν↗ν‖M

Experimente online!Link é a versão detalhada.

Estou muito feliz com este golfe, então ...

Explicação

Nν                 take a number as input and store in ν
  ↙ν               print / ν times downwards to the left
    ↑              move up once
     ↑ν            print | ν times upwards
       ↖ν          print \ ν times upwards to the left
                   print a space
          ×_ν      print _ ν times
             ↗ν    print / ν times upwards to the right
               ‖M  reflect horizontally
     /\                           
    /  \    "No, this is Patrick!"
___/    \___                      
\   ☉ ☉    /                      
 \   𝐷    /                       
  \      /                        
  |  /\  |                        
  | /  \ |                        
  |/    \| 
totalmente humano
fonte
Desenhando de baixo para cima, economiza 2 bytes.
Neil
Isso porque Polygondeixa o cursor no último caractere, mas eu não estava usando Polygon... na verdade, eu também não estava usando o melhor código, agora estou com 17 anos.
Neil
Não sei se eu tenho 17 da mesma maneira que você, mas ... Obrigado!
totallyhuman
Perto o suficiente. Eu realmente tive Move(:Right); for (n) Print("_");.
Neil
5

SOGL V0.12 , 27 24 bytes

╔*¹.╚№┼№.╝+ø┐.∙.1ž.╚┼+╬³

Experimente aqui!

Explicação:

╔*                        push a string with input amount of underscores
  ¹                       wrap that in an array
   .╚                     push a "/" diagonal of the size of the input (the top lines)
     №                    reverse vertically
      ┼                   add horizontally the underscores behind the array
       №                  reverse vertically back
        .╝+               below that add a "\" diagonal (middle lines)
           ø              push an empty string as the base of the vertical bars
            ┐.∙           get an array of "|" with the length of the input
               .1ž        at [input; 1] in the empty string insert that
                  .╚┼     horizontally append a "/" diagonal
                     +    add that below everything else
                      ╬³  palindromize horizontally
dzaima
fonte
4

Python 2 ,  166 160 157 155  152 bytes

o exec abordagem é exatamente a mesma contagem de bytes.

i=input();t,z=" \\";y=t*2
for k in range(i*3):s=k%i;o=i+~s;p=i+o;g="_ "[i>k+1]*p;print[g+"/"+y*k+z+g,t*s+z+y*p+"/",~-i*t+"|"+o*t+"/"+y*s+z+o*t+"|"][k/i]

Experimente online!

Economizou 3 bytes graças a Jonathan Frech .

Mr. Xcoder
fonte
Você pode salvar alguns bytes substituindo t=" ";y,z=t*2,"\\"por t,z=" \\";y=t+t.
Jonathan Frech
@JonathanFrech Obrigado.
Mr. Xcoder
3

Java 8, 385 376 344 304 285 280 268 264 252 250 + 19 bytes

n -> {int s = 2 * n, w = 2 * s, e = n-1, i = 0, o, l [] [] = novo int [n * 3] [w]; para (; i <n; l [i] [s + ~ i] = l [n + i] [w + ~ i] = l [o] [s + ~ i] = 47, l [i] [o] = l [o] [ o] = l [n + i] [i] = 92, l [e] [i] = l [e] [w - ++ i] = 95, l [o] [e] = l [o] [ s + n] = 124) o = s + i; for (int [] b: l) System.out.println (nova String (b, 0, w) .replace (" ", ""));}

Experimente online!

Roberto Graham
fonte
Você pode reduzi-lo por 10 bytes usando truques bit a bit e movendo todas as suas declarações inteiros fora seus loops ( 270 bytes )
Mr. Xcoder
E você pode economizar ainda mais 2 bytes movendo o int o=fora do loop também ( 268 bytes )
Mr. Xcoder
Você pode salvar mais 4 bytes, livrando-se dos colchetes do loop for e usando ++diretamente a última ocorrência de i, desta forma: 264 bytes .
Kevin Cruijssen
1
252 bytes
Nevay
@Nevay Muito inteligente, muito obrigado
Roberto Graham
2

Mathematica, 189 bytes

n(
  s_±x_±y_:=s->Array[If[x==y,s," "]&,{n,n}];
  StringRiffle[Characters@{"_/\\_","\\  /","|/\\:"}/.
    {"_"±#±n,"|"±#2±n,":"±#2±1,"\\"±#±#2,"/"±(n-#+1)±#2," "±0±1}
    /.":"->"|"//ArrayFlatten,"
",""])

A linha 2 define o operador auxiliar ±, que é usado para fazer a linha 4 ser avaliada como:

{"_"  -> Array[If[#1 == n,          "_", " "] &, {n, n}], 
 "|"  -> Array[If[#2 == n,          "|", " "] &, {n, n}], 
 ":"  -> Array[If[#2 == 1,          ":", " "] &, {n, n}], 
 "\\" -> Array[If[#1 == #2,         "\\"," "] &, {n, n}], 
 "/"  -> Array[If[1 + n - #1 == #2, "/", " "] &, {n, n}], 
 " "  -> Array[If[0 == 1,           " ", " "] &, {n, n}]}

Na linha 3, o ReplaceAll( /.) pega uma matriz que representa a estrela do tamanho 1, bem como a lista de regras acima. Para as etapas finais, usamos ArrayFlatten, que é menor que SubstitutionSystem, e StringRiffle.

hftf
fonte
2

Java 7, 295 bytes

Solução é método f.

String s(String s,int n){while(n-->0)s=" "+s;return s;}String f(int x){String n="\n",s="/",b="\\",o="",u="_";int i=0;for(x--;i<x;u+="_")o+=s(s,2*x-i+1)+s(b,2*i++)+n;o+=u+s+s(b,2*i)+u+n;while(i>=0)o+=s(b,x-i)+s(s,4*x-2*(x+~i--))+n;while(i++<x)o+=s("|",x)+s(s,x-i)+s(b,2*i)+s("|",x-i)+n;return o;}

Experimente Online (JDK 8)

Ungolfed

String s(String s, int n) {
    while (n-- > 0)
        s = " " + s;
    return s;
}

String f(int x) {
    String
        n = "\n",
        s = "/",
        b = "\\",
        o = "",
        u = "_"
    ;
    int i = 0;
    for (x--; i < x; u += "_")
        o += s(s, 2*x - i + 1) + s(b, 2 * i++) + n;
    o += u + s + s(b, 2 * i) + u + n;
    while (i >= 0)
        o += s(b, x - i) + s(s, 4*x - 2*(x + ~i--)) + n;
    while (i++ < x)
        o += s("|", x) + s(s, x - i) + s(b, 2 * i) + s("|", x - i) + n;
    return o;
}

Agradecimentos

  • -1 byte graças a Kevin Cruijssen
Jakob
fonte
0

Python 2 , 137 bytes

n=input()
b,f,s,v='\/ |'
for i in range(3*n):u=i/~-n*n*'_';d=f+i%n*2*s+b;print[u+d+u,b+s*2*(3*n+~i)+f,v+d.center(2*n)+v][i/n].center(4*n)

Experimente online!

Lynn
fonte