> <>, रेटिना, पायथन 2: 144 127 123 बाइट्स
1 बाइट ने एक स्थान को हटाकर @Loovjo को धन्यवाद दिया
4 बाइट्स ने @ mbomb007 की input
बजाय धन्यवाद का उपयोग करके बचायाraw_input
#v"PAPER"v?%4-2{"SCISSORS"v?%2:i
#>ooooo; >oooooooo<"ROCK"~<
a="KRS".index(input()[-1])
print["SCISSORS","ROCK","PAPER"][a]
TNB में एक चुनौती के रूप में पोस्ट किया गया , मैंने भाषाओं के इस संयोजन को आज़माने का फैसला किया।
> <>
इसे ऑनलाइन आज़माएं!
IP सही से चलना शुरू करता है।
# Reflect the IP so that it now moves left and it wraps around the grid
i: Take one character as input and duplicate it
संभावित वर्ण जिन्हें इनपुट में लिया जाएगा वे हैं PRS
(चूंकि प्रोग्राम केवल पहला वर्ण लेता है)। उनके ASCII-मान हैं 80
, 81
और 82
।
2% Take the modulo 2 of the character. Yields 0, 1, 0 for P, R, S respectively
?v If this value is non-zero (ie the input was ROCK), go down, otherwise skip this instruction
यदि इनपुट रॉक था, तो यही होगा:
< Start moving to the left
~ Pop the top most value on the stack (which is the original value of R and not the duplicate)
"KCOR" Push these characters onto the stack
< Move left
oooo Output "ROCK" as characters (in turn these characters are popped)
o Pop the top value on the stack and output it; but since the stack is empty, the program errors out and exits promptly.
अन्यथा, यदि इनपुट था SCISSORS
या PAPER
, यह वही है जो आईपी का सामना करेगा:
"SROSSICS" Push these characters onto the stack
{ Shift the stack, so the the original value of the first char of the input would come to the top
2-4% Subtract 2 and take modulo 4 of the ASCII-value (yields 2, 0 for P, S respectively)
?v If it is non-zero, go down, otherwise skip this instruction
यदि इनपुट था PAPER
, तो:
>ooooooooo Output all characters on the stack (ie "SCISSORS")
< Start moving left
o Pop a value on the stack and output it; since the stack is empty, this gives an error and the program exits.
अन्यथा (यदि इनपुट था SCISSORS
):
"REPAP" Push these characters onto the stack
v>ooooo; Output them and exit the program (without any errors).
रेटिना
इसे ऑनलाइन आज़माएं!
इस मामले में, रेटिना प्रत्येक दो पंक्तियों की एक जोड़ी को एक मैच और प्रतिस्थापन की जोड़ी के रूप में मानती है। उदाहरण के लिए, यह पहली पंक्ति से मेल खाने वाली किसी भी चीज़ को दूसरी पंक्ति से बदलने की कोशिश करता है, लेकिन चूंकि पहली पंक्ति कभी मेल नहीं खाती है, इसलिए यह कभी भी किसी चीज़ के साथ प्रतिस्थापित नहीं होती है, इस प्रकार इनपुट को संरक्षित करती है।
अजगर २
इसे ऑनलाइन आज़माएं!
पायथन प्रोग्राम को "
एस के बीच में डालने के लिए इनपुट की आवश्यकता होती है ।
पहले दो पंक्तियाँ पायथन में टिप्पणियाँ हैं।
a="KRS".index(input()[-1]) # Get the index of the last character of the input in "KRS"
print["SCISSORS","ROCK","PAPER"][a] # Print the ath index of that array