CJam, 44 42 40 बाइट्स
qN+ee_{Xa/~\+XW=eu__el=!\'@-*m<Xa+}fXWf=
आउटपुट में एक अनुगामी लाइनफ़ीड शामिल है।
इसका परीक्षण यहां करें।
व्याख्या
स्ट्रिंग के माध्यम से अक्षरों को स्थानांतरित करने के बजाय, मैं बार-बार एक पत्र को हटाता हूं, तदनुसार स्ट्रिंग को घुमाता हूं, और फिर पत्र को पुन: स्थापित करता हूं। ऐसा करने के लिए एक पकड़ है: हमें स्ट्रिंग के अंत से स्ट्रिंग की शुरुआत को भेद करने में सक्षम होने की आवश्यकता है (जो हम एक साधारण रोटेशन के बाद नहीं कर सकते हैं)। इसलिए हम एक गार्ड के रूप में अंत में एक लाइनफ़ीड सम्मिलित करते हैं (लाइनफ़ीड से पहले पत्र स्ट्रिंग का अंत है, यह शुरुआत के बाद पत्र है)। बोनस यह है कि यह स्वचालित रूप से अंतिम स्ट्रिंग को सही रोटेशन में लौटाता है जहां स्ट्रिंग के अंत में लाइनफीड वास्तव में है ।
lN+ e# Read input and append a linefeed.
ee e# Enumerate the array, so input "bob" would become [[0 'b] [1 'o] [2 'b] [3 N]]
e# This is so that we can distinguish repeated occurrences of one letter.
_{ e# Duplicate. Then for each element X in the copy...
Xa/ e# Split the enumerated string around X.
~ e# Dump the two halves onto the stack.
\+ e# Concatenate them in reverse order. This is equivalent to rotating the current
e# character to the front and then removing it.
XW= e# Get the character from X.
eu e# Convert to upper case.
_ e# Duplicate.
_el=! e# Check that convert to lower case changes the character (to ensure we have a
e# letter).
\'@- e# Swap with the other upper-case copy and subtract '@, turning letters into 1 to
e# 26 (and everything else into junk).
* e# Multiply with whether it's a letter or not to turn said junk into 0 (that means
e# everything which is not a letter will be moved by 0 places).
m< e# Rotate the string to the left that many times.
Xa+ e# Append X to the rotated string.
}fX
Wf= e# Extract the character from each pair in the enumerated array.
यह देखने के लिए कि यह सही स्थिति में क्यों समाप्त होता है, hi*bye
उदाहरण के अंतिम पुनरावृत्ति पर विचार करें । हमारे द्वारा संसाधित किए जाने के बाद e
, एन्यूमरेटेड स्ट्रिंग इस स्थिति में है:
[[4 'y] [6 N] [2 '*] [0 'h] [1 'i] [3 'b] [5 'e]]
सबसे पहले, हम लाइनफीड के चारों ओर विभाजित होते हैं और रिवर्स ऑर्डर में भागों को बदलते हैं:
[[2 '*] [0 'h] [1 'i] [3 'b] [5 'e] [4 'y]]
लाइनफीड अब या तो इस स्ट्रिंग की शुरुआत या अंत में होगी। लेकिन चूंकि लाइनफीड सिर्फ एक गार्ड है जो स्ट्रिंग के अंत को चिह्नित करता है, इसका मतलब है कि अक्षर वास्तव में सही क्रम में हैं। अब लाइनफीड एक पत्र नहीं है, ताकि सरणी को घुमाया न जाए। इस प्रकार, जब हम लाइनफीड को जोड़ते हैं, तो वह उसी स्थान पर जाता है जहां वह होता है, और वह सब कुछ है जिस क्रम में हम देख रहे हैं:
[[2 '*] [0 'h] [1 'i] [3 'b] [5 'e] [4 'y] [6 N]]
कुछ अतिरिक्त परिणाम यदि कोई लंबे समय तक परीक्षण के मामलों की तुलना करना चाहता है:
Hello, World!
,W oeHlo!lrld
Programming Puzzles & Code Golf
ago fgliPomomnrr elP& uC dezzsG
The quick brown fox jumps over the lazy dog
t eg chbi ko qfTounyzrj omw epx ueoahs rlvd
abcdefghijklmnopqrstuvwxyz
aqbrcdsetfguhivjwklxmnyozp
zyxwvutsrqponmlkjihgfedcba
abcdefghijklmnopqrstuvwxyz
मुझे वह आखिरी पसंद है। :)