सीजेम, 96
यह बहुत सारे गंदा बाइट्स का उपयोग करता है, इसलिए यहां इसका एक हेक्स डंप है:
00000000 22 ee 51 1e 53 41 15 ee 51 20 53 41 15 9a 5f 5a |".Q.SA..Q SA.._Z|
00000010 b9 5f 41 15 8c 5f 41 f9 38 24 2a 15 7e 55 1c 5f |._A.._A.8$*.~U._|
00000020 b9 30 5f b9 41 15 a8 26 2a 26 2a 15 36 45 91 c3 |.0_.A..&*&*.6E..|
00000030 ed cb 41 f3 df eb 41 db 20 cb c9 41 e9 df c9 c3 |..A...A. ..A....|
00000040 f3 7f 45 36 15 22 7b 69 32 6d 64 5c 5f 63 5c 37 |..E6."{i2md\_c\7|
00000050 6d 64 22 20 5f 6f 2d 7c 7e 2e 22 3d 2a 3f 7d 2f |md" _o-|~."=*?}/|
आप जावा इंटरप्रेटर के साथ फाइल चला सकते हैं; ISO-8859-1 एन्कोडिंग का उपयोग करना आवश्यक हो सकता है, जैसे:
java -Dfile.encoding=ISO-8859-1 …
इसे ऑनलाइन आज़माएं
समतुल्य (और बहुत लंबा) ASCII संस्करण:
[238 81 30 83 65 21 238 81 32 83 65 21 154 95 90 185 95 65 21 140 95 65 249 56 36 42 21 126 85 28 95 185 48 95 185 65 21 168 38 42 38 42 21 54 69 145 195 237 203 65 243 223 235 65 219 32 203 201 65 233 223 201 195 243 127 69 54 21]:c
{i2md\_c\7md" _o-|~."=*?}/
इसे ऑनलाइन आज़माएं
स्पष्टीकरण:
7 वर्ण हैं जिनमें पुनरावृत्तियाँ हैं _o-|~.
:। उनमें से प्रत्येक को 0 से 6 तक की संख्या n के रूप में एन्कोड किया जा सकता है। प्रत्येक दोहराए जाने वाले अनुक्रम के लिए, मैं एक ही बाइट में वर्ण के सूचकांक (n) और दोहराव की संख्या (k) दोनों को एन्कोड कर रहा हूं: इसके 2 * (k * 7 + n)
साथ एक चरित्र के रूप में लिखा गया है। कोड। और मैं किसी भी एकल वर्ण को एन्कोडिंग कर रहा हूं 2 * c + 1
, जहां ग ASCII कोड है। सब कुछ प्रारंभिक स्ट्रिंग में चला जाता है, और बाकी कार्यक्रम इसे डिकोड कर रहा है:
{…}/ for each character in the string
i convert to integer (extended-ASCII code)
2md integer division by 2, obtaining the quotient (q) and remainder (r)
r decides whether it's a repetition or single character
\_ swap q and r, and duplicate q
c\ convert q to character and move it before the other q
this is for the r=1 case (single character)
7md divide q by 7, obtaining the quotient (k) and remainder (n)
"…"= get the corresponding character from that string (decoding n)
* repeat the character k times
? use the single character or the repetition, depending on r
पुराना संस्करण (109):
" H(_2)
H(o2)
B/-6\/
A/ | 4|2 3
9* 2/\-3/\
C~2 3~2 3
.6"{_'M,48>&{~*}&}/3/"Have you mooed today?"`*N
इसे ऑनलाइन आज़माएं