एंग्री डक को छोड़ें


56

कोई भी काफी निश्चित नहीं है कि इमोटिकॉन >:Uका प्रतिनिधित्व करने का इरादा क्या है, लेकिन कई विद्वानों का मानना ​​है कि यह एक नाराज बतख जैसा दिखता है । मान लेते हैं कि ऐसा ही है।

कार्य

0 और 3 के बीच पूर्णांक n को देखते हुए , प्रिंट करें या लौटें

quack

यदि n = 0,

>:U

यदि n = 1,

     U   U
>  : U   U
 >   U   U
>  : U   U
      UUU

यदि n = 2, या

                  >:U         >:U
>:U               >:U         >:U
   >:U       >:U  >:U         >:U
      >:U         >:U         >:U
         >:U      >:U         >:U
      >:U         >:U         >:U
   >:U       >:U  >:U         >:U
>:U               >:U         >:U
                     >:U>:U>:U

यदि n = 3।

आप मान सकते हैं कि इनपुट हमेशा मान्य होगा। आउटपुट में कोई अग्रणी स्थान नहीं होना चाहिए, लेकिन किसी भी स्थान का अनुगामी स्थान ठीक है। बतख (@cobaltduck के संभावित अपवाद के साथ) में खामियों के लिए कोई सहिष्णुता नहीं है। बाइट्स में सबसे छोटा कोड जीतता है।


90
पहले मैं सोच रहा था "हं, क्या बत्तख है?"। सौभाग्य से आपने विकिपीडिया पृष्ठ का लिंक प्रदान किया है।
अदनान

6
"बतख को खामियों के लिए कोई सहिष्णुता नहीं है।" लेकिन आप एक पक्षी नहीं एक बतख है, इसका मतलब है कि हम खामियों का उपयोग कर सकते हैं? : पी
22

6
@Downgoat नोप। इसके अलावा वह संपादन पूरी तरह से अनावश्यक था इसलिए मैंने इसे वापस ले लिया।
एलेक्स ए।

6
@Downgoat s /: P />: U /
ETHproductions

7
"बतख को खामियों के लिए कोई सहिष्णुता नहीं है।" कि, मेरे दोस्त, एक खतरनाक स्टीरियोटाइप है। अगर मुझे आपके इरादे पता नहीं थे, तो मैं अपराध कर सकता हूं।
19

जवाबों:


19

CJam, 108 90 85 बाइट्स

"quack"">:U":D"scT¦{$ì"{269b22bSf*D}:F~[ZYB].*s.+s5/"ÿ3nÜïS{JÐø¦yûn"F*33/z]ri=zN*

ध्यान दें कि कुछ अक्षर अप्राप्य हैं। इसे ऑनलाइन आज़माएं!

पृष्ठभूमि

CJam में पहले दो आउटपुट अयोग्य हैं।

अंतिम उत्पादन को समझना सीधा है। सभी लाइनफीड्स को अलग करने के बाद, हम परिणामस्वरूप स्ट्रिंग को विभाजित कर सकते हैं >:Uऔर रिक्त स्थान के प्रत्येक परिणामी स्ट्रिंग की लंबाई की गणना कर सकते हैं।

इसका परिणाम सरणी में है

[18 9 0 15 9 3 7 2 9 6 9 9 9 6 9 6 9 9 3 7 2 9 0 15 9 21 0 0 0]

जिसे हम 22 से बेस 269 में परिवर्तित करके, अंकों की पैदावार करके कुशलतापूर्वक स्टोर कर सकते हैं

[255 12 51 110 220 239 83 123 74 208 248 166 121 251 110 17]

चूंकि प्रत्येक अंक 256 से कम है , इसलिए हम इसे एकल बाइट के रूप में संग्रहीत कर सकते हैं।

अंत में, तीसरे आउटपुट को कंप्रेस करना आसान हो जाता है यदि हम लाइनों और कॉलमों को स्थानांतरित करते हैं:

 > > 
  >  

 : : 

UUUU 
    U
    U
    U
UUUU

गैर-व्हाट्सएप वर्णों के बीच एक बार और रिक्त स्थान गिनते हुए, हमें सरणी मिलती है

[1 1 3 8 1 6 0 0 0 5 4 4 0 0 0 0 0]

जो बन जाता है

[115 159 99 84 166 123 36 236 6]

जब बेस 22 से बेस 269 तक ट्रांसकोड किया गया।

यह काम किस प्रकार करता है

"quack"   e# Push the first output.

">:U":D   e# Push the second output, and save it in D.

e# Push [115 159 99 84 166 123 36 236 6] as bytes.

"scT¦{$ì"

{         e# Define a code block:
  269b22b e#   Transcode from base 269 to base 22.
  Sf*     e#   Replace each digit with a string of that many spaces.
  D       e#   Push D.
}         e#
:F~       e# Save the block in F. Execute it.
[ZYB]     e# Push [3 2 11].
.*        e# Vectorized repeat; push [">>>" "::" "UUUUUUUUUUU"].
s         e# Flatten the array of strings.
.+        e# Append the nth character to the nth string of spaces.
s5/       e# Flatten and split into chunks of length 5.

e# Push [255 12 51 110 220 239 83 123 74 208 248 166 121 251 110 17] as bytes.

"ÿ3nÜïS{JÐø¦yûn"

F         e# Execute F.
*         e# Join the resulting array of strings of spaces, separating by ">:U".
33/       e# Split into chunks of length 33.
z         e# Zip; transpose rows with columns.

]         e# Wrap the entire stack in an array.
ri        e# Read a token from STDIN and interpret it as an integer.
=         e# Retrieve the element at the corresponding index.
z         e# Zip; transpose rows with columns or map "string" to ["string"].
N*        e# Join, separating by linefeeds.

2
मुझे :Dदो तारों के बीच अतिरिक्त पसंद है ।
जर्बद

7
@Zgarb उन्होंने महान बतख अधिपति की अपील की है। बत्तख अब मुस्कुराती है।
एलेक्स ए।

7
मैं यह सोचकर पृष्ठ पर गया, "172 ... 162 ... 182 ... मैं उन सभी को हरा सकता हूं। रुको, 90; ओह, यह डेनिस द
अनजेबल है

22

जावा, 303 286 बाइट्स

17 बाइट्स @VoteToClose की बदौलत सहेजे गए!

वास्तव में सबसे छोटा होने का मतलब नहीं था, मुझे लगा कि जावा में कोशिश करना मजेदार होगा।

आम स्ट्रिंग्स का प्रतिनिधित्व करने वाले स्ट्रिंग चर की एक सूची बनाता है, फिर सभी आउटपुट की एक सरणी बनाता है, फिर दाईं ओर प्रिंट करता है।

String a(int y){String n="\n",d=">:U",A=" ",B=A+A,C=B+B,D=C+C,a="U"+B+" U"+n,G=D+A,H=C+B,c=d+G+d+n,E=B+A,F=C+E;String[]z={"quack",d,C+A+a+">"+B+": "+a+" >"+E+a+">"+B+": "+a+C+B+"UUU",D+D+B+c+d+D+F+c+B+A+d+F+d+B+c+H+d+G+c+G+d+H+c+H+d+G+c+E+d+F+d+B+c+d+D+F+c+D+D+C+A+d+d+d};return z[y];}

Ungolfed:

String a(int y) {
    String n = "\n", d = ">:U", A = " ", B = A + A, C = B + B, D = C + C,
            a = "U" + B + " U" + n, G = D + A, H = C + B, c = d + G + d + n,
            E = B + A, F = C + E;
    String[] z = { "quack", d, C + A + a + ">" + B + ": " + a + " >" + E + a + ">" + B + ": " + a + C + B + "UUU", D + D + B + c + d + D + F + c + B + A + d + F + d + B + c + H + d + G + c + G + d + H + c + H + d + G + c + E + d + F + d + B + c + d + D + F + c + D + D + C + A + d + d + d };
    return z[y];
}

इस साइट पर यह मेरा पहला उत्तर है, इसलिए कृपया मुझे बताएं कि क्या मैंने कुछ गलत किया है।


2
यह ठीक लग रहा है! अच्छा पहला पोस्ट, और PPCG में आपका स्वागत है!
कॉनर ओ'ब्रायन

@AlexA। मुझे बताने के लिए धन्यवाद, मैंने इसे ठीक कर दिया।
फ्लाइंगपाइंस्टर

2
@ kittycat3141 बहुत अच्छा लग रहा है। मेरी चुनौती में भाग लेने के लिए अच्छा समाधान और धन्यवाद! :)
एलेक्स ए।

ऐसा प्रतीत होता है कि D+Aऔर C+Bअक्सर दिखाई देता है 2 नए चर में आगे गोल्फ हो। मुझे यह भी थोड़ा सा एहसास होता है कि लूप के लिए एक सरणी का उपयोग करने से मदद मिल सकती है, लेकिन मुझे यह पता नहीं चला है कि कैसे ...
Addison Crump

9

05AB1E , 162 159 157 बाइट्स

कोड

दमयन्ती, रास्ता बहुत लंबा है, लेकिन यह कम से कम कुछ है:

">:U"VI3Qið16×7166b1ð:0Y:DUJ,Yð13×JD?X,3838b1ð:0Y:D?X,16255b1ð:0Y:D?X,16367b1ð:0Y:4F?X,}ð21×Y3×J,}¹2Qið4×" U   U"©J,">  :"®JD," >  "?®,,ð6×'U3×J,}¹iY,}"quack

इसे ऑनलाइन आज़माएं!


व्याख्या

कोड का पहला भाग मौजूद है ">:U"V, जो Yउस स्ट्रिंग को सेट करता है। उसके बाद, हम सिर्फ यह जांचते हैं कि इनपुट 3 के बराबर है या नहीं I3Qi। यदि समान है, तो हम विशालकाय मेग्पी प्रिंट करते हैं:

एन = 3

यह पहले शुरू होता है ð16×जिसके साथ बस 16 अंतरिक्ष वर्णों को धकेलता है। उसके बाद, एक नंबर है 7166b। यह ">:U "भाग को कवर करता है , रेटिना से थोड़ी मदद के साथ :)। मैंने स्ट्रिंग को बाइनरी नंबर में बदलने के लिए इस स्क्रिप्ट का उपयोग किया । उसके बाद, हम उस 1ð:0Y:हिस्से पर पहुंचते हैं, जो हर जगह 1को एक स्पेस कैरेक्टर से बदल देता है और हर एक के 0साथ Y, जिसे सेट किया गया है >:U। उसके बाद, हम Dइस स्ट्रिंग uplicate, में संग्रहीत Xका उपयोग कर Uऔर Jढेर oin। हम इसका उपयोग करके पॉप करते हैं ,, जो एक नई रेखा के साथ पूर्ण स्ट्रिंग को प्रिंट करता है। उसके बाद के सभी अन्य सभी एक ही प्रिंसिपल पर आधारित हैं। यदि कथन दूसरे पर समाप्त होता है }

पूर्ण रूपांतरण यहां पाया जा सकता है

एन = 2

अब हम जांचते हैं कि इनपुट 2 के बराबर है। यह ¹2Qiभाग में किया गया है। उसके बाद, यदि समान है, तो हम 4 बार का उपयोग करके अंतरिक्ष वर्ण को धक्का देते हैं ð4×। उसके बाद, हम " U U"स्ट्रिंग को धक्का देते हैं और इसका उपयोग करके स्टोर करते हैं ©(विचार जेली से चोरी हो गया है: पी)। हम फिर Jसे ढेर को हटाते हैं और इसे एक नई रेखा के साथ प्रिंट करते हैं। उसके बाद, हम "> :"स्ट्रिंग को धकेलते हैं , " U U"उपयोग को पुनः प्राप्त करते हैं ®, Jस्टैक को Dहटाते हैं और इस स्ट्रिंग को ऊपर उठाते हैं और इन दोनों को एक ही लाइन पर प्रिंट करते हैं।

लघु प्रश्नोत्तरी, यह क्या करेगा " > "?®,:?

उपरोक्त स्ट्रिंग को प्रिंट करने के बाद, हम चेहरे की दूसरी पंक्ति का डुप्लिकेट प्राप्त करते हैं, और इसे प्रिंट करते हैं (क्योंकि यह दूसरी पंक्ति के समान है)।

इस मामले द्वारा कवर किया गया अंतिम भाग है:

ð6×'U3×J,

ð6×        # Push the space character × 6
   'U3×    # Push the "U" character three times
       J,  # Join and print pop with a newline

एन = 1

यह समझाने में आसान है:

¹1QiY

¹1Qi   # Check if the input is equal to 1
    Y  # Push the magpie face
       # This is then implicitly printed

एन = 0

¹0Qi"quack

¹0Qi        # Check if the input is equal to 0
    "quack  # Weird sound what magpies make
            # Implicitly printed

स्पष्टीकरण plz? : पी
एडिसन क्रम्प

@VoteToClose Done :)
अदनान

"बहुत लंबा रास्ता"? मेरा जवाब देखें :-P
लुइस मेंडो

2
टीआईएल कि मैगपाईज क्वैक। जाहिरा तौर पर।
एलेक्स ए।

8

विटसी , 172 171 159 बाइट्स

हे भगवान। अगर मुझे तरीकों की ताकत दिखाने के लिए कुछ चाहिए था, तो मुझे मिल गया।

' 'V1+m
'kcauq'Z
'U:>'Z
58m5m6m'   > 'Z5m6m'UUU'68m
f3+bm9mamcm98m2m6bmcmam9mf6+8m3\[2m]
a'U   U'Z
' :  >'Z5m
Z2m98ma2m
\VZ
2mfbm
VVVZ2m78m2mVV7m
8m7m
68m2m9bm

इसे ऑनलाइन आज़माएं!

यह कैसे काम करता है अपने आप में विभिन्न तरीकों को बुलाकर। स्पष्टीकरण नीचे है:

' 'V1+m
' 'V      Save character literal ' ' as a permanent variable.
    1+    Add one to the top item of the stack (input + 1)
      m   Go to that index of code.

'kcauq'Z
'kcauq'   Push 'quack' to the stack.
       Z  Output everything in the stack as a char.

'U:>'Z
'U:>'Z    Ouput ">:U" with the same method as the previous line.

Now on to some more... interesting lines.

58m5m6m'   > 'Z5m6m'UUU'68m
5              Push space, push 4
 8m            Call the 8th line index.
               As we will soon see, the 8th line index duplicates the space
               the number of times specified by the number just before the call 
               (4 in this case)
   5m          Call the 5th line index.
               The 5th line index outputs the 'U   U' and a newline.
     6m        Call the 6th line index.
               The 6th line index outputs '>  : U   U' and a newline.
'   > 'Z       Output ' >   '.
        5m6m   Same method calls as before.
'UUU'          Push 'UUU'.
     68m       Push 6, then call the 8th line index. This gives us the correct padding.

f3+bm9mamcm98m2m6bmcmam9mf6+8m3\[2m]
f3+              Push 18.
   bm            Call the 11th line index.
                 The 11th line index calls the 8th line index (which we've already seen
                 in action) and then the 7th line index, which you can find and explanation
                 for below (it does a lot)
     9m          Call the 9th line index.
                 The 9th line index outputs '>:U               >:U         >:U' (explanation lower)
       am        Call the 10th line index.
                 ...I'm gonna stop explaining these and just tell you to go to the lines now. :P
         cm      Call the 12th line index.
9                Push space, push 9.
 8m              Call the 8th line index (explained below and before).
   2m            Call the 2nd line index.
     6           Push 6.
      bm         Call the 11th line index. We've finished up to '>:U      >:U         >:U' now.
cm               You guessed it! Call the 12th line index. (explanation below)
  am             Call the 10th line index. (explanation below)
    9m           Call the 9th line index. (explanation below)
f6+              Push space, push 19 21.
   8m            Call the 8th line index. (explanation below)
     3\[2m]      Call the 2nd line index thrice.

All of the rest of these methods are supporting methods now.

a'U   U'Z       Output 'U   U' followed by a newline.

' :  >'Z5m      Output '>  : U   U' followed by a newline.

Z2m98ma2m
Z               Output everything currently in the stack.
 2m             Call the 2nd line index.
   9            Push space, push 8.
    8m          Call the 8th line index. (explained below)
      a         Push a newline to the stack.
       2m       Call the 2nd line index.
                This handles the biggest angry duck face's faces showing the eyebrows and eyes.

\VZ
\V    Push space as many times as the top item specifies.
  Z   Output everything in the stack.

2mfbm
2m      Call the 2nd line index.
  f     Push space, push 14.
   bm   Go to the 11th line index.
        This handles the mouth and some parts of the eyebrows of the biggest duck face.

VVVZ2m78m2mVV7m
VVVZ              Output 3 spaces (and whatever was pushed before it)
    2m            Call the 2nd line index.
      7           Push space, push 6.
       8m         Call the 8th line index. (explained... above)
         2m       Call the 2nd line index.
           VV     Push 2 spaces.
             7m   Call the 7th line index.

8m7m     This is pretty damn self-explanatory if you've read this far.

68m2m9bm
6            Push space, push 5.
 8m          Call the 8th line index.
   2m        Call the 2nd line index.
     9       Push space, push 9.
      bm     Call the 11th line index.

यह कोड हास्यास्पद है। यह क्रिया रूप है:

toggle single quote;
 ;
toggle single quote;
save top as permanent variable;
push 1;
add top two;
goto top method;
:toggle single quote;
k;
push 12;
push 10;
flatten top two stacks;
q;
toggle single quote;
output stack as chars;
:toggle single quote;
U;
clone current stack;
go forward;
toggle single quote;
output stack as chars;
:push 5;
push 8;
goto top method;
push 5;
goto top method;
push 6;
goto top method;
toggle single quote;
 ;
 ;
 ;
go forward;
 ;
toggle single quote;
output stack as chars;
push 5;
goto top method;
push 6;
goto top method;
toggle single quote;
U;
U;
U;
toggle single quote;
push 6;
push 8;
goto top method;
:push 15;
push 3;
add top two;
push 11;
goto top method;
push 9;
goto top method;
push 10;
goto top method;
push 12;
goto top method;
push 9;
push 8;
goto top method;
push 2;
goto top method;
push 6;
push 11;
goto top method;
push 12;
goto top method;
push 10;
goto top method;
push 9;
goto top method;
push 15;
push 6;
add top two;
push 8;
goto top method;
push 3;
repeat next instruction set top times;
begin recursive area;
push 2;
goto top method;
end recursive area;
:push 10;
toggle single quote;
U;
 ;
 ;
 ;
U;
toggle single quote;
output stack as chars;
:toggle single quote;
 ;
clone current stack;
 ;
 ;
go forward;
toggle single quote;
output stack as chars;
push 5;
goto top method;
:output stack as chars;
push 2;
goto top method;
push 9;
push 8;
goto top method;
push 10;
push 2;
goto top method;
:repeat next instruction set top times;
save top as permanent variable;
output stack as chars;
:push 2;
goto top method;
push 15;
push 11;
goto top method;
:save top as permanent variable;
save top as permanent variable;
save top as permanent variable;
output stack as chars;
push 2;
goto top method;
push 7;
push 8;
goto top method;
push 2;
goto top method;
save top as permanent variable;
save top as permanent variable;
push 7;
goto top method;
:push 8;
goto top method;
push 7;
goto top method;
:push 6;
push 8;
goto top method;
push 2;
goto top method;
push 9;
push 11;
goto top method;

7

जावास्क्रिप्ट (ईएस 6), 163 बाइट्स

var solution =

n=>["quack",d=">:U",`5U3U
>2:1U3U
1>3U3U
>2:1U3U
6UUU`,`99090
096090
30702090
609090
906090
609090
30702090
096090
993000`][n].replace(/\d/g,c=>+c?" ".repeat(c):d)
<input type="number" oninput="R.textContent=solution(+this.value)"><pre id="R"></pre>

व्याख्या

जावास्क्रिप्ट के साथ मेरे गो-टू संपीड़न का उपयोग करता है: रन-लंबाई एन्कोडिंग। उस स्थान के 1लिए 9मैप करने के लिए अंक , 0गुस्सा बतख चेहरे के लिए नक्शे, और किसी भी अन्य चरित्र एक ही रहता है।


1
गैर-गोल्फिंग भाषा के लिए बहुत प्रभावशाली है, लेकिन n = 3 के लिए केंद्र के ठीक ऊपर और नीचे की पंक्तियाँ गायब लगती हैं।
ETHproductions

@ETHproductions उफ़, यकीन नहीं होता कि वहाँ क्या हुआ था। अब तय हो गया।
user81655

7

जाप, 116 105 102 99 96 बाइट्स

["quack""c)`+«öÂ[@=^Gñ`1]o2"mc r'4#¿+R "4z>2:z >2z>2:z6UUU"rz" U3U
" '1]®r'1">:U" r"%d"_SpZ}ÃgU

एक अनपेक्षित होता है। इसे ऑनलाइन टेस्ट करें!

यह काम किस प्रकार करता है

पहले दो तार बिल्कुल संकुचित नहीं हैं। तीसरे को केवल अपनी लंबाई के साथ रिक्त स्थान के प्रत्येक रन को बदलकर संकुचित किया जाता है, फिर " U3U"साथ "z"। अंतिम अधिक जटिल है:

  1. इसकी लंबाई के प्रत्येक रन को 2-9 स्थानों से बदलें।
  2. बदलें >:Uके साथ 1
  3. बदलें 191\nके साथ 4। ( 4स्ट्रिंग में कहीं और उपयोग नहीं किया गया है)
  4. उस चार कोड वाले चरित्र के लिए प्रत्येक मान्य बाइट कोड ( 10- 255, या 0A- FF) को मैप करें ।

परिणामी स्ट्रिंग केवल 21 19 बाइट्स लंबा है, लेकिन अपघटन एक और 31 29 तक ले जाता है ।

स्ट्रिंग्स को डिकम्प्रेस करने के बाद, हम बस आइटम को स्थिति में लेते हैं U, इनपुट। (सरणी व्यवस्थित है [0,3,2,1]क्योंकि एक बग है जो इसे शुरुआत के बजाय सरणी के अंत से गिनता है ।)

[                      // Create an array of the following:
  "quack"              //  "quack".

  "c)`+«öÂ[@=^Gñ`1]o2" //  Take this string (contains an unprintable).
                       //  Map each char to its char code.
                       //  This produces "994196431712461949164619431712419649931112".
  r'4#¿+R              //  Replace each "4" with the char code of "¿" (191) + a newline.

  "4z>2:z >2z>2:z6UUU" //  Take this string.
  rz" U3U\n"           //  Replace each "z" with " U3U\n".

  '1                   //  "1".
]
®              Ã       // Map each item by this function:
r'1">:U"               //  Replace each "1" with ">:U".
r"%d"_SpZ}             //  Replace each remaining digit Z with Z spaces.

gU                     // Get the item at index -U, wrapping. 
                       // (This should just be U, but there's a bug which negates it.)

5

MATL , 283 182 बाइट्स

101 बाइट्स ने @ धन्यवाद को बचाया!

यह सूचक संख्याओं को सांकेतिक शब्दों में बदलना करने के लिए दशमलव संख्याओं का उपयोग करता है 0... 3मामलों 2 और 3 के लिए चार वर्णों के लिए। दशमलव संख्या शायद आधार -64 एन्कोडिंग का उपयोग करके संपीड़ित की जा सकती है, लेकिन नीम हकीम!

मामले 3 के लिए एक बहुत अच्छा चाल @Adnan ने सुझाव दिया प्रयोग किया जाता है: प्रत्येक पंक्ति सांकेतिक शब्दों में बदलना है, जहां के लिए द्विआधारी अनुक्रम निर्धारित 0और 1अंतरिक्ष के लिए और अनुरूप >:Uक्रमशः।

~?'quack'}G1=?'>:U'}G2=?' :>U'12336 8466480h2109488h8466480h4032h4YA47-)}268697600 67174401h16795656h67174464h67174912h67174464h16795656h67174401h14680064h"@BP48+]Xh49'>:U'YX48 32YXc

इसे ऑनलाइन आज़माएं!


3
कैसे पिछले मामले के लिए, का उपयोग कर के बारे में इस जगह 1रिक्त स्थान के साथ और 0साथ >:Uस्ट्रिंग। मुझे नहीं पता कि क्या इससे मदद मिलेगी।
अदनान

@ अदनान यह एक अच्छा विचार है!
लुइस मेंडो

5
@ अदनान 101 बाइट्स बचाए: -ओ
लुइस

बहुत शानदार है! बहुत अच्छा जवाब! :)
अदनान

5

दालचीनी गोंद, 76 बाइट्स

0000000: 6c33 502b 2c4d 4cce b636 54b3 b30a b536  l3P+,ML..6T....6
0000010: 5253 0081 5010 e6b2 5350 b082 3215 ecb0  RS..P...SP..2...
0000020: 8a42 1487 865a 1bab 2960 00a0 79c8 6c2e  .B...Z..)`..y.l.
0000030: 2026 a002 4221 0430 55c0 5938 cd40 9720   &..B!.0U.Y8.@. 
0000040: 6c06 6177 90e9 17ac 4102 4100            l.aw....A.A.

इस चुनौती के बाद दालचीनी गम बनाया गया था।

इसे ऑनलाइन आज़माएं।

व्याख्या

पहला बाइट lमोड को निर्दिष्ट करता है: इस मामले में यह लयबद्धता तालिका मोड में प्रवेश करने के लिए दालचीनी गम बताता है। दालचीनी गम तब इस में बाकी स्ट्रिंग (जो के साथ संपीड़ित किया गया है) decompresses zopfli --deflate:

0&quack;1&>:U;2&     U   U
>  : U   U
 >   U   U
>  : U   U
      UUU;3&                  >:U         >:U
>:U               >:U         >:U
   >:U       >:U  >:U         >:U
      >:U         >:U         >:U
         >:U      >:U         >:U
      >:U         >:U         >:U
   >:U       >:U  >:U         >:U
>:U               >:U         >:U
                     >:U>:U>:U

इसके बाद एक शब्दकोष और आउटपुट में ;प्रत्येक कुंजी-मूल्य जोड़ी ( &सीमांकक के साथ ) को विभाजित करता है dictionary[input]


5

जावास्क्रिप्ट ईएस 6, 232 223 203 188 बाइट्स

बच निकले 29 44 बाइट्स ETHproductions की बदौलत!

n=>[`quack`,r=`>:U`,`     U   U
>  : U   U
 >   U   U
>  : U   U
      UUU`,`00022
10022
0100 1  12
00122
20012
00122
0100 1  12
10022
0000211`.replace(/\d/g,N=>[g=`   `,r,g+g+g+r][N])][n]

इसका परीक्षण करो!


निश्चित रूप से यह atob'd जा सकता है ... यदि नहीं, तो हो सकता है 1और 0एक trinary संख्या में बनाया जा सकता है?
डाउनगेट

1
@Downgoat btoaing और trinary दोनों लंबे हैं।
कॉनर ओ'ब्रायन

पुराना जवाब है, लेकिन आप को बदलने के द्वारा 15 बाइट्स की तरह बचा सकता है r+g+g+g+rकरने के लिए g+g+g+rहै और उसके अनुसार स्ट्रिंग का समायोजन।
ETHproductions

0

जीएमएल, 265 बाइट्स

@ Kittycat3141 के उत्कृष्ट उत्तर का एक पोर्ट, दो नए चर (जिसे मैंने G और H नाम दिया है) के साथ आगे बढ़ने के सुझाव के साथ @VoteToClose द्वारा। मैंने इसे GML के अपेक्षाकृत ढीले सिंटैक्स के साथ आगे छोटा करने में कामयाब रहा।

d=">:U"A=" "B=A+A;C=B+B;D=C+C;G=D+A;H=C+B;a="U"+B+" U"+"#"c=d+G+d+"#"E=B+A;F=C+E;x[0]="quack"x[1]=d;x[2]=C+A+a+">"+B+": "+a+" >"+E+a+">"+B+": "+a+H+"UUU"x[3]=D+D+B+c+d+D+F+c+B+A+d+F+d+B+c+H+d+G+c+G+d+H+c+H+d+G+c+E+d+F+d+B+c+d+D+F+c+D+D+C+A+d+d+d;return x[argument0]
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.