Código Golf Golf Golf


24

Desafio de golfe

Dado o ASCII abaixo "Verde".

|          |
|  |>      |
|  |       |
|  O       |
|          |
|          |
|          |
|          |
|          |
|          |

Vamos |denotar uma parede
Vamos |denotar metade do mastro da bandeira
Vamos> denotar a bandeira no mastro
Deixe Odenotar o buraco
Deixe odenotar a bola

As dimensões do "verde" são 10x10. Existem dez espaços entre as duas paredes |.
Existem também dez espaços, vazios ou não, entre o topo e o fundo do verde.

Desafio

Insira um valor x e y ou gere dois números aleatórios para "atirar" uma bola de golfe no verde.
Se o x, y gerado não tocar no buraco ou no mastro da bandeira / na saída da bandeira "Tente novamente!"
Se o x, y gerado atingir a saída do furo "Hole in One!"
se o x, y gerado atingir a saída do pólo "Lucky Shot!"
se o x, y gerado atingir a saída do sinalizador "Close One!"

Após o arremesso, mostre a localização da bola no verde com um o , substituindo qualquer personagem que ela acertar. Também envie o respectivo ditado acima.

Exemplos:

//Hole in one example, the O was replaced with a o
Randomed x = 3
Randomed y = 4

"Hole in One!"

|          |
|  |>      |
|  |       |
|  o       |
|          |
|          |
|          |
|          |
|          |
|          |


//Clone example, the top half of the pole was replaced with a o
Randomed x = 3
Randomed y = 2

"Lucky Shot!"

|          |
|  o>      |
|  |       |
|  O       |
|          |
|          |
|          |
|          |
|          |
|          |

//Lucky Shot example, the > was replaced with a o
Randomed x = 4
Randomed y = 2

"Close One!"

|          |
|  |o      |
|  |       |
|  O       |
|          |
|          |
|          |
|          |
|          |
|          |

//Try Again example, the <space> was replaced with a o
Randomed x = 5
Randomed y = 1

"Try Again!"

|     o    |
|  |>      |
|  |       |
|  O       |
|          |
|          |
|          |
|          |
|          |
|          |

Divirta-se e boa sorte e, como esse é o o código mais curto vence!


A bandeira / poste está sempre na mesma posição?
Corvus_192 25/10

Você pode deixá-lo onde está, ou se divertir com ele e movê-lo. Achei que seria muito doloroso movê-lo, mas acho que isso adiciona um desafio divertido. Se você movê-lo, eu me certificaria de 2 <h <= 10, onde h é o índice de altura do furo. Dessa forma, a bandeira não está fora da tela.
jacksonecac

2
Ou tomar dois paramters i e k, onde 0 <i <= 10 e 0 <k <= 10 ou o conjunto i e k usando geração de números aleatórios
jacksonecac

11
@ corvus_192 absolutamente #
1025516

11
Essas seqüências de saída são dolorosas para o código de golfe. Uma vez que não há respostas ainda, considerar permitindo a tomá-los como uma entrada
Luis Mendo

Respostas:


10

JavaScript (ES6) 210 208 193 184 bytes

f=(a,b)=>((s=[...(`
|          |`).repeat(10)])[17]=s[30]='|',s[18]='>',s[43]=0,s[a+=1+b*13]='o',(a-17&&a-30?a-18?a-43?'Try Again!':'Hole in One!':'Close One!':'Lucky Shot!')+s.join``)
  • -9 bytes thanx em Hedi

Demo


8

Geléia , 78 bytes

ċЀ®Ḍị“ȷþḄ7Ẋ“þẹƊ⁴ḳL&Ṛ“qĠṂ®““ÞzḊṁġ“»;”!Ṅṛ
⁶ẋ“€¡®µC‘ż“|>|O”©F”o⁸¦Ç
ṭḌ‘Çs⁵j@€⁾||Y

Jogue um jogo de habilidade ou um jogo de porcaria em TryItOnline!

(Crap-shoot custa mais bytes).

Quão?

ṭḌ‘Çs⁵j@€⁾||Y - Main link: x, y (0-based)
ṭ             - tack            -> [y, x]
 Ḍ            - cast to decimal -> 10y+x
  ‘           - increment       -> 10y+x+1
   Ç          - call last link (1) as a monad
    s⁵        - split into chunks of size 10 (rows of green display)
         ⁾||  - literal ['|','|']
      j@€     - join €ach  with reversed @rguments (make the border)
            Y - join with line feeds
              - implicit print

⁶ẋ“€¡®µC‘ż“|>|O”©F”o⁸¦Ç - Link 1, Make green & place the ball: decimal 1-based location
  “€¡®µC‘               - code page indexes -> [12,0,8,9,67]
⁶                       - literal ' '
 ẋ                      - repeat (vectorises)
         ż              - zip with
          “|>|O”        - literal ['|','>','|','O']
                ©       -     and place the flag parts into the register
                 F      - flatten list
                     ¦  - apply to index at
                    ⁸   - input value
                  ”o    - literal 'o'
                      Ç - call the last link (2) as a monad

ċЀ®Ḍị“ȷþḄ7Ẋ“þẹƊ⁴ḳL&Ṛ“qĠṂ®““ÞzḊṁġ“»;”!Ṅṛ - Link 2, Print message: green with ball
   ®                                     - read register (the flag parts)     | > | O
ċЀ                                      - count occurrences e.g. HoleInOne: [2,1,2,0]
    Ḍ                                    - cast to decimal                  ->2120
     ị                                   - index into (1-based & modular) 2120 % 6 = 2
      “ȷþḄ7Ẋ“þẹƊ⁴ḳL&Ṛ“qĠṂ®““ÞzḊṁġ“»      - compressed list of (6) strings:
              ...["Lucky Shot","Hole in One","Try Again","","Close One",""]
                                   ;     - concatenate with
                                    ”!   - literal '!'
                                      Ṅ  - print with linefeed
                                       ṛ - yield right argument (the green)

8

Python 2, 290 264 262 252 248 245 bytes

Não é bonito e não é curto, mas estou cansado e é o primeiro resposta única do Python. Insira a foto no formato x, y.

Editar

Jogou 26 ao redefinir a forma como a lista é construída. Ainda sem sorte com a declaração longa se.

-2 substituindo long se por um dicionário e menor se.

-10 com agradecimentos a @ Noodle9 - eu tinha perdido esse :)

-4 - obrigado novamente :)

Mais 3 de folga. Obrigado.

x,y=input();a=[' ']*120;a[15]=a[27]='|';a[16],a[39],b='>','0',x+y*12
a[b],k='o',"Lucky Shot!";l={16:"Close One!",15:k,27:k,39:"Hole in One!"}
print l[b]if b in l else"Try Again!"
for z in range(10):c=z*12;a[c]=a[c+11]='|';print''.join(a[c:c+12])

Para quem está interessado na lógica, sem comentários com comentários (1316 bytes, mas ainda assim cabe facilmente em um disco de 3,5 ", se alguém se lembra deles):

x,y=input()                                     #Get the input as a tuple
a=[' ']*120                                     #Create a great big list of spaces for the whole green
a[15]=a[27]='|'                                 #Put the flag pole in place
a[16]='>'                                       #Add the flag
a[39]='0'                                       #Add the hole
b=x+y*12                                        #Get the absolute position in the list of the input tuple 
a[b]='o'                                        #Place the ball on the green
k="Lucky Shot!"                                 #Set a variable for k because it is long and we're going to use it twice
l={16:"Close One!",15:k,27:k,39:"Hole in One!"} #Create a dictionary of the comments (using k)
print l[b]if b in l else"Try Again!"            #If the absolute index is in the dict then print it otherwise print the default
for z in range(10):                             #Loop through the length of the green
    c=z*12                                      #Set a variable for the start point of each line
    a[c]=a[c+11]='|'                            #Add the left and right walls
    print''.join(a[c:c+12])                     #Print each line in turn. Because this is in a for loop then Python will deal with newlines

Definitivamente, a primeira vez que um dicionário foi o melhor formato de dados em um desafio de golfe.


você pode usar qualquer coisa que é Hashable como uma chave do dicionário
Noodle9

6

C, 236 bytes

n,m;char*a[]={"Try Again!","Hole in One!","Lucky Shot!","Close One!"};f(x,y){n=130;m=142-y*13-x;puts(a[(m==87)+2*(m==113|m==100)+3*(m==112)]);while(n--)putchar(m==n?111:n%13?n%13==1|n%13==12|n==113|n==100?124:n==112?62:n==87?79:32:10);}

Ungolfed:

n,m;
char*a[]={"Try Again!","Hole in One!","Lucky Shot!","Close One!"};
f(x,y){
 n=130;
 m=142-y*13-x;
 puts(a[(m==87) + 2*(m==113|m==100) + 3*(m==112)]); 
 while(n--)
  putchar(m==n?111:n%13?n%13==1|n%13==12|n==113|n==100?124:n==112?62:n==87?79:32:10);
}

3

Scala, 238 bytes

(x:Int,y:Int)=>{val r="<          |\n"
('"'+(if(x==2&y==3)"Hole in One!"else
if(x==2&(y==1|y==2))"Lucky Shot!"else
if(x==3&y==1)"Close One!"else
"Try again!")+"'",(r+"|  |>      |\n|  |       |\n|  O       |\n"+r*6)updated(1+x+13*y,'o'))}

Usando indexação zero.

Isso é legível demais :(

Explicação:

(x:Int,y:Int)=>{                                      //define an anonymous function
  val r="|          |\n"                                //a shortcut for an empty row
  (                                                     //return a tuple of
    '"'+                                                  //a double quote
    (if(x==2&y==3)"Hole in One!"                          //plus the correct string
    else if(x==2&(y==1|y==2))"Lucky Shot!"
    else if(x==3&y==1)"Close One!"
    else "Try again!"
    )+"'"                                                 //and another quote
  ,                                                     //and
    (r+"|  |>      |\n|  |       |\n|  O       |\n"+r*6) //the field
    updated(1+x+13*y,'o')                                //with the (1+x+13*y)th char replaced with a ball
  )
}

Usei a fórmula 1+x+13*ypara calcular o índice correto, já que cada linha tem 13 caracteres de comprimento (2 bordas, uma nova linha e 10 espaços) mais um deslocamento de um porque (0,0) deve ser o segundo caractere.


3

Perl, 225 209 bytes

$_="|".$"x10 ."|
";$_.=sprintf("|  %-8s|
"x3,"|>","|",O).$_ x6;$d="Try Again!";($x,$y)=@ARGV;say$x==3?$y~~[2,3]?"Lucky Shot!":$y==4?"Hole in One!":$d:$x==4&&$y==2?"Close One!":$d;substr($_,$y*13-13+$x,1)=o;say

As duas novas linhas literais, cada uma, salvam um byte. Bastante padrão. Imprime a declaração e depois o tabuleiro de jogo.


3

Carvão , 99 bytes

NαNβ× ⁵↑¹⁰‖C←J⁴¦²←>↓²OM⁴↖P⁺⎇∧⁼α³⁼β⁴Hole in One⎇∧⁼α³⁼¹÷β²Lucky Shot⎇∧⁼α⁴⁼β²Close One¦Try Again¦!Jαβo

Recebe entrada baseada em 1, separada por espaço, em stdin. A maior parte do código é para imprimir (uma) as quatro mensagens. Experimente online!

Nota: o carvão ainda é um trabalho em andamento. Esse código funciona a partir do commit atual . Se ele parar de funcionar no futuro (em particular, se o link TIO não funcionar conforme o esperado), execute um ping e tentarei adicionar uma versão atualizada não concorrente que funcione.

Explicação

NαNβ       Read two inputs as numbers into variables α and β

               Construct the green and flag:
× ⁵          Print to canvas 5 spaces
↑¹⁰          Print 10 | characters going up
‖C←         Reflect and copy leftward
             At this point, borders of green are complete; cursor is above left wall
J⁴¦²        Jump 4 units right and 2 down
←>           Print the flag, going leftward
↓²           Print the pin (2 | characters), going downward
O            Print the hole
             The last print was rightward by default, which means we're now at (4,4)
M⁴↖         Move 4 units up and left; cursor is above left wall again

               Add the proper message:
⎇∧⁼α³⁼β⁴    If α is 3 and β is 4 (in the hole):
Hole in One  
⎇∧⁼α³⁼¹÷β²  Else if α is 3 and β is 2 or 3 (hit the pin):
Lucky Shot
⎇∧⁼α⁴⁼β²    Else if α is 4 and β is 2 (hit the flag):
Close One
             Else:
¦Try Again
⁺...¦!       Concatenate a ! to the string
P           Print it without changing the cursor position

               Overwrite the appropriate spot with o:
Jαβ         Jump α units right and β units down
o            Print o

3

Brain-Flak , 1466 1938 bytes

(<()>)<>((()()()()()){}){({}[()]<(((((((()()()()()){})){}{}()){}){})<((()()()()()){}){({}[()]<(((((()()){}){}){}){})>)}{}>)((()()()()()){})>)}{}((((()()){}){}){}()){({}[()]<({}<>)<>>)}{}{}{}(((((()()()()()){})){}{}()){})(((((((()()()()()){})){}{}()){}){})<(((()()()){}){}()){({}[()]<({}<>)<>>)}{}{}>)(((()()()){}){}()){({}[()]<({}<>)<>>)}{}{}(((((()()()){}){}){}){}){<>({}<>)}(<>{}((((({}[()])){}){})){}{}{}()<>{}){({}[()]<({}<>)<>>)}{}({}<(((((((()()()){}){})){}{}())){}{}){<>({}<>)}>)(({}<((({}(((()()){}){}){}()){})[()])>)[((((()()){}){}){}){}]){({}[(((()()){}){}){}]){({}[((()()()){}()){}]){{}{}(((((((((()()()){}()){}){}()){}){})[()()()()()])[(()()()){}()])<(((((()()()()()){}){}){}()){}())(((((()()){}){}){}){})>(((()()){}){}){}())(([((()()()){}()){}](({})<>)<>)[((()()){}){}])((<>{}<>[()()()()])[(((()()()()()){}){}){}()])<>}{}{{}((((((((((()()()){}){}){}()){}){}())<>)<>((()()())){}{})[(((()()()()()){})){}{}()])<(((((()()){}){}){}){})((((<>{}<>)((()()()){}()){})[()()()()])[()()()])>[((()()()){}){}])<>}}{}{{}((((((((()()()){}){}){}()){}){}())((()()())){}{})[(((()()()()()){})){}{}()])((((((()()){}){}){}){})<(((((()()()()()){}){({}[()])}{}){})[()()()()()])>)((((((((()()()){}){}){}()){}){}())(()()()){}())()()())((((((()()()){}){}){})){}{})<>}{}}{}{{}(((((((()()()()()){}){({}[()])}{}){})[()()()()()])[((()()){}){}])(()()()){})(((((((((((()()){}){}){}){})))({}<({}{}())>)[()()()()]){}())[(()()()){}()])[(((()()()()()){})){}{}])<>}<>(((((()()){}){}){}()){})

Experimente online!


Eu ganhei?


Você parece ter um byte nulo sendo impresso no final da primeira linha de saída.
0

@ 1000000000 sim. Corrigi isso com a minha atualização mais recente. Obrigado por apontar isso.
MegaTom 28/10

2

TI-Basic, 183 bytes

Input X
Input Y
X+1➡X
ClrHome
For(I,1,10
Output(I,1,"|
Output(I,12,"|
End
Output(2,4,"|>
Output(3,4,"|
Output(4,4,"O
Output(Y,X,"o
13
Output(1,Ans,"TRY AGAIN!
If X=4 and Y=4
Output(1,Ans,"HOLE IN ONE!
If X=5 and Y=2
Output(1,Ans,"CLOSE ONE!
If Y=2 or Y=3 and X=4
Output(1,Ans,"LUCKY SHOT!

Graças a Deus, o TI-Basic usa tokens.

o | normalmente não podem ser digitados, mas é no conjunto de caracteres.

Por favor, deixe-me saber se o resultado da foto absolutamente deve ser minúsculo.

Adicionarei uma captura de tela de um resultado de programa de exemplo posteriormente.


2

Groovy - 235 bytes

Minha primeira tentativa - Um fechamento groovy aceitando 2 números inteiros de 0 a 9 como as coordenadas X e Y para a foto.

(j, k-> j ++; c = ''; b = '|'; f = '>'; h = 'O'; s = ''; v = [2: b, 3: b, 4: h ]; (0..9) .each {y-> l = (b + s * 10 + '| \ n'). Chars; l [3] = v [y] ?: s; l [4] = y == 2? f: s; se (k == y) {m = [(s): 'Tente novamente!', (b): 'Tiro de sorte!', (f): 'Feche um!', (h): 'Hole In One!'] ["" ​​+ l [j]]; l [j] = 'o'}; c + = l}; c + = m}

2

Dyalog APL , 147 (ou 127) bytes

Toma (y, x) como argumento.

{G10 10''
G[⍳4;3]←' ||O'
G[2;4]←'>'
G[⊃⍵;⊃⌽⍵]←'o'                G[y;x]←
⎕←'|',G,'|'                  Print G with sides
4 3≡⍵:'Hole in One!'         If (y,x)  (4,3)
(⊂⍵)∊2 3∘.,3:'Lucky Shot!'   If (y,x)  {(2,3), (2,3)}
2 4≡⍵:'Close One!'
'Try Again!'}                Else

A partir da versão 16.0, quase podemos reduzir pela metade a contagem de bytes com o novo @operador;

@ coloca o operando esquerdo nas posições do operando direito no argumento certo: NewChars @ Positions ⊢ Data

{⎕←'|','|',⍨' ||O>o'@((2 4)⍵,⍨3,⍨¨⍳4)⊢10 10''
4 3≡⍵:'Hole in One!'
(⊂⍵)∊2 3∘.,3:'Lucky Shot!'
2 4≡⍵:'Close One!'
'Try Again!'}

Código ligeiramente modificado para tornar permitido no TryAPL:

Buraco em Um , Tiro 1 da Sorte , Tiro 2 da Sorte , Fechamento Um , Aleatório


1

Turtled , 164 bytes

Mais uma vez, mostrando o equilíbrio de Turtlèd entre golfiness e verbosidade para as coisas mais simples (como aumentar um número), Turtlèd supera todos, exceto os langs do golfe.

6;11[*'|:'|>;<u]'|rrr'O8:'|u'|>;'|ddd'|l'|uuu<"|>":l'|u'|>11;'|?<:?;( #Try Again!#)(>#Close One!#)(|#Lucky Shot!#)(O#Hole in One!#)'o[|r][ u]dl[|l][ u]u@"-,r["+.r_]

Experimente online

Observe que é meio zero indexado e metade um indexado; x é um indexado, y é zero indexado; 3,3 é um buraco em um


1

R, 230 226 bytes

M=matrix("|",10,10);M[2:9,]=" ";M[34]="0";M[4,2:3]="f";M[15]=">";function(x,y){m=switch(M[y,x],">"="Close One","f"="Lucky Shot","0"="Hole In One","Try again");M[y,x]="o";cat(m,"!\n",sep="");cat(gsub("f","|",M),sep="",fill=10)}

Graças a @billywob por -2 bytes, perceber M[a,b]é equivalente a M[c]em alguns casos.

Irritantemente, as duas catchamadas (!) Não podem ser catconectadas em uma, pois o fillargumento atrapalha a mensagem. Argh!


11
Mova a criação da matriz dentro da função e fazer em um único nome:function(x,y){M=matrix("|",10,10);M[2:9,]=" ";M[34]="0";M[4,2:3]="f";M[15]=">";m=switch(M[y,x],">"="Close One","f"="Lucky Shot","0"="Hole In One","Try again");M[y,x]="o";cat(m,"!\n",sep="");cat(gsub("f","|",M),sep="",fill=10)}
Billywob

Oh, é justo. Veja bem, acho que não precisava f=da minha solução. Removido.
JDL
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.