Citando il Grande Fratello


16

Attività: chiedi al tuo programma di scegliere casualmente una delle seguenti virgolette in fase di esecuzione e di stampare quella citazione, esattamente come mostrato.

1:

Under the spreading chestnut tree
I sold you and you sold me.
There lie they, and here lie we
Under the spreading chestnut tree.

2:

WAR IS PEACE.
FREEDOM IS SLAVERY.
IGNORANCE IS STRENGTH.

Restrizioni: Le parole spreading, chestnut, PEACE, FREEDOM, e STRENGTH devono comparire nel codice. Nessuna parola tra le due citazioni sopra può apparire nel tuo codice più di una volta .

Vince la soluzione più breve.


1
Ok ho scelto il primo. Onesto!xkcd.com/221
edc65

9
@ edc65 Non è più divertente .
Martin Ender

@ MartinBüttner non per essere divertente, ma per suggerire una regola più esplicita. Leggendo la prima volta che ho davvero pensato di poterne scegliere una casuale e poi iniziare a lavorare.
edc65

@ edc65 Ah, vedo, la formulazione era diversa.
Martin Ender,

Risposte:


3

PHP 179

Ispirato dalla risposta di es1024 .

<?=strtr(rand()%2?"0
I 1 232 1 me.
T5 they,35 we
0.
":"WAR4PEACE.
FREEDOM4SLAVERY.
IGNORANCE4STRENGTH.
",["Under the spreading chestnut tree",sold,you," and "," IS ","here lie"]);

4

Perl ( 191 184 caratteri)

$_=$$&1?"0
I12321me6T4they,34we
06":"WAR5PEACE6FREEDOM5SLAVERY6IGNORANCE5STRENGTH6";s/\d/("Under the spreading chestnut tree"," sold ",you," and ","here lie "," IS ",".
")[$&]/ge;print

Grazie @ core1024 per suggerimenti su come giocare a golf.


1
Puoi sostituire 6 con nuove righe effettive, rilasciare le virgolette "you"e usarle $$&1come generatore casuale :)
core1024

3

Java, 338

Non riesco a farlo al di sotto di 338 ...

class B{public static void main(String[]a){String b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=".\n",i=" IS ";if(Math.random()>.5)System.out.print(b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+h);else System.out.print("WAR"+i+"PEACE"+h+"FREEDOM"+i+"SLAVERY"+h+"IGNORANCE"+i+"STRENGTH"+h);}}

Bit ungolfed:

class B{public static void main(String[]a){String b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=".\n",i=" IS ";
if(Math.random()>.5)System.out.print(b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+h);
else System.out.print("WAR"+i+"PEACE"+h+"FREEDOM"+i+"SLAVERY"+h+"IGNORANCE"+i+"STRENGTH"+h);}}


Grazie per il link! Domani cercherò qualcosa di utile.
CoolWilly,

@Fabinout Ho provato alcuni trucchi, ma non mi hanno aiutato. ( java.io.PrintStream p=System.out, aggiunti 15 byte al totale,, static<T>void p(T o){System.out.print(o);}aggiunti 12). Altri suggerimenti?
CoolWilly,

usa il blocco statico invece di una dichiarazione principale
Fabinout,

Blocco statico * 310 CHAR *: classe B {statico {Stringa b = "Sotto l'albero di castagno in espansione", c = "venduto", d = "tu", e = "e", f = "me. \ NT", g = "qui giacciono", h = ". \ n", i = "IS"; if (Math.random ()>. 5) System.out.print (b + "\ nI" + c + d + e + d + c + f + g + "they," + e + g + "we \ n" + b + h); altrimenti System.out.print ("WAR" + i + "PEACE" + h + "FREEDOM" + i + "SLAVERY "+ h +" IGNORANCE "+ i +" STRENGTH "+ h);}}
Fabinout,

2

Javascript 229254 256

Modifica 1 usando new Datecome suggerito da @Doorknob - non mi è ancora chiaro come javascript le date si trasformino in stringhe o numeri interi o altro

Modifica 2 semplificata. Un sacco.

t=(new Date&1
   ?'0WAR0 IS 0PEACE0.\n0FREEDOM020SLAVERY040IGNORANCE020STRENGTH.'
   :'0Under the spreading chestnut tree0\nI 0sold 0you 0and 04030me.\nT0here lie 0they, 05090we\n010.'
  ).split(0);
for(i=o='';j=t[++i];)o+=t[j|0||i];alert(o)

new Dateè più corto diDate.now()
Maniglia della porta

1
Per spiegare la Dateconversione: > La data JavaScript si basa su un valore temporale che è millisecondi dalla mezzanotte del 01 gennaio 1970 UTC. Un giorno detiene 86.400.000 millisecondi. L'intervallo di oggetti JavaScript Date è compreso tra -100.000.000 giorni e 100.000.000 giorni rispetto al 01 gennaio 1970 UTC. , quando lo fai &viene automaticamente trasmesso a Number. Quindi stai fondamentalmente facendo la scelta casuale in base al fatto che sia un millesimo di secondo pari o dispari 1970-01-01T00:00:00.000Zdall'epoca.
Bob

@Doorknob potresti scrivere un breve articolo per quel generatore di numeri casuali più corto in codegolf.stackexchange.com/questions/2682/… Non l'ho ancora visto lì e penso che potrebbe essere abbastanza utile.
flawr

@flawr Done
Doorknob

2

C # (268) (260) (256)

Questo è eseguibile in LINQPad, usando il Dump()metodo:

string b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=" IS ";if(new Random().Next(9)>4)(b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+".").Dump();else("WAR"+h+"PEACE.\nFREEDOM"+h+"SLAVERY.\nIGNORANCE"+h+"STRENGTH.").Dump();

Ungolfed:

string b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=" IS ";

if(new Random().Next(9)>4)
    (b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+".").Dump();
else
    ("WAR"+h+"PEACE.\nFREEDOM"+h+"SLAVERY.\nIGNORANCE"+h+"STRENGTH.").Dump();

Aggiornare:

Usando l'operatore ternario e 1 variabile extra, sono stato in grado di tagliare altri 6 caratteri:

string a,b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=" IS ";a=new Random().Next(9)>4?(b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+"."):("WAR"+h+"PEACE.\nFREEDOM"+h+"SLAVERY.\nIGNORANCE"+h+"STRENGTH.");a.Dump();

Ungolfed:

string a,b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=" IS ";

a=new Random().Next(9)>4 ?
    (b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+".") :
    ("WAR"+h+"PEACE.\nFREEDOM"+h+"SLAVERY.\nIGNORANCE"+h+"STRENGTH.");

a.Dump();

Update2:

Grazie al geniale suggerimento di tsavinhoessere riuscito a salvare altri 4 caratteri posizionando le parentesi graffe attorno all'operazione ternaria:

string b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=" IS ";(new Random().Next(9)>4?(b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+"."):("WAR"+h+"PEACE.\nFREEDOM"+h+"SLAVERY.\nIGNORANCE"+h+"STRENGTH.")).Dump();

Ungolfed:

string b="Under the spreading chestnut tree",c="sold ",d="you ",e="and ",f="me.\nT",g="here lie ",h=" IS ";
(new Random().Next(9)>4?
    (b+"\nI "+c+d+e+d+c+f+g+"they, "+e+g+"we\n"+b+"."):
    ("WAR"+h+"PEACE.\nFREEDOM"+h+"SLAVERY.\nIGNORANCE"+h+"STRENGTH.")
).Dump();

1
Puoi salvare altri 4 caratteri rimuovendo a e sostituendolo con parentesi come questa: stringa b = "Sotto l'albero di castagno diffondente", c = "venduto", d = "tu", e = "e", f = "me . \ nT ", g =" qui giacciono ", h =" IS "; (nuovo Casuale (). Successivo (9)> 4? (b +" \ nI "+ c + d + e + d + c + f + g + "they," + e + g + "we \ n" + b + ".") :( "GUERRA" + h + "PACE. \ nFREEDOM" + h + "SLAVERY. \ nIGNORANCE" + h + "FORZA.")). Dump ();
Tsavinho,

1

Python 3 - 228

for x in[b"AB:87078@624>049BA6",b"?;<61;=63;56"][id(id)%3-1]:print("and |FREEDOM|T|IGNORANCE|here lie |STRENGTH|.\n|you |sold |we|I | IS |PEACE|SLAVERY|they, |WAR|me|Under the spreading chestnut tree|\n".split("|")[x-48],end="")

Leggermente non golfato:

# id(id) returns an even number based on memory address of id
# id(id)%3-1 gives -1, 0 or 1
randomNumber = id(id)%3-1

# Word list
words = "and |FREEDOM|T|IGNORANCE|here lie |STRENGTH|.\n|you |sold |we|I | IS |PEACE|SLAVERY|they, |WAR|me|Under the spreading chestnut tree|\n".split("|")

# Byte Literals for Under the chestnut and WAR IS PEACE
# each byte correspond to the word's index in the word list
byteLiterals = [b"AB:87078@624>049BA6", b"?;<61;=63;56"]
choice = byteLiterals[randomNumber]

for x in choice: 
    print(words[x-48], end="") # Print each word out

1

PowerShell 205

("{0}.`nI{1}{2}{3}{2}{1} me.`nT{4}they,{3} {4}we`n{0}."-f"Under the spreading chestnut tree"," sold"," you"," and","here lie "),("WAR","PEACE.`nFREEDOM","SLAVERY.`nIGNORANCE","STRENGTH."-join" IS ")|Random

Utilizza l' -foperatore per mettere le stringhe sulla prima virgoletta, e la seconda viene unita IS, dopodiché seleziona un elemento casuale di quelle 2 virgolette e lo stampa ...



1

JavaScript / jQuery 396

var B={
U:"Under the spreading chestnut tree",
s:"sold ",
y:"you ",
l:"lie ",
a:"and ",
i:"IS ",
b:"</br>"
};
var A={
P:B.U+B.b+"I "+B.s+B.y+B.a+B.y+B.s+"me."+B.b
+"There "+B.l+"they, "+B.a+"here "+B.l+"we."+B.b+B.U,
Q:"WAR "+B.i+"PEACE."+B.b+"FREEDOM "+B.i+"SLAVERY."+B.b
+"IGNORANCE "+B.i+"STRENGTH."
};
$(function(){
var z=(Math.random()<0.5)?A.P:A.Q; 
$('#d').append(z);
});

1

T-SQL, 337 327

Per divertimento, ho creato un'altra soluzione in T-SQL, che è un byte più corta della mia soluzione Java 8:

DECLARE @b char(33)='Under the spreading chestnut tree',@c char(5)='sold',@d char(4)='you',@e char(4)='and',@f char(9)='here lie',@ char='
',@h char(4)=' IS'IF rand()>.5PRINT @b+@+'I '+@c+@d+@e+@d+@c+'me.'+@+'T'+@f+'they, '+@e+@f+'we'+@+@b+'.'ELSE PRINT'WAR'+@h+'PEACE.'+@+'FREEDOM'+@h+'SLAVERY.'+@+'IGNORANCE'+@h+'STRENGTH.'

Dichiarando il char quello troppo lungo, è possibile aggiungere uno spazio "automatico", risparmiando qualche byte.

Usando il codice nella modifica proposta dall'utente PenutReaper, puoi effettivamente radere via 10 byte.


L'uso di una variabile per i ritorni a capo non vale la pena. Usa solo quelli letterali.
Muqo,

1

Java Script (233)

Math.random()>0.5?(a="Under the spreading chestnut tree")+"\nI "+(s="sold")+(y=" you ")+(n="and")+y+s+" me.\nT"+(h="here ")+(l="lie ")+"they "+n+" "+h+l+"we\n"+a+".":["WAR","PEACE.\nFREEDOM","SLAVERY.\nIGNORANCE","STRENGTH."].join(" IS ")

Scritto senza guardare altre risposte. Fa buon uso degli incarichi come espressioni.


0

05AB1E , 119 byte

“‚  spreading chestnutíÍ““Iïê€î€ƒ€îïê€á.““€Çº¤€»,€ƒ€Îº¤€¦“).ªĆ»‘‡î€ˆ PEACE.
FREEDOM€ˆÃÒRY.
IGNORANCE€ˆ STRENGTH‘)'.«Ω

Provalo online!


0

Python 3 , 222 byte

a,b,c,d,e,f='Under the spreading chestnut tree',' you ',' lie ','and','sold',' IS '
print({f'{a}\nI {e}{b}{d}{b}{e} me.\nThere{c}they, {d} here{c}we\n{a}.',f'WAR{f}PEACE.\nFREEDOM{f}SLAVERY.\nIGNORANCE{f}STRENGTH.'}.pop())

Provalo online!


0

C (gcc) , 307 289 271 270 byte

-37 byte grazie a ceilingcat

*y=" IS ";main(){int*r[]={"WAR",y,"PEACE.\nFREEDOM",y,"SLAVERY.\nIGNORANCE",y,"STRENGTH.",0,"Under the spreading chestnut tree","\nI"," sold ","you"," and ",r[11],r[10],"me.\n","T","here lie ","they,",r[12],r[17],"we\n",r[8],".",0},z=r;for(z=z/2&8;r[z];)printf(r[z++]);}

Provalo online!

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.