ब्रेल-इफि ए स्ट्रिंग


22

और नहीं, यह ब्रेल के लिए ट्रांसलेशन ASCII टेक्स्ट का डुप्लिकेट नहीं है

यूनिकोड में 2 8 = 256 ब्रेल पैटर्न हैं । ('ब्रेल' से मेरा मतलब है 8-सेल वाले)

डब्ल्यू, रुको। कितने ASCII वर्ण थे?

2 = १२ 7 ?

तो ठीक है, आइए ASCII को ब्रेल में बदल दें, 'कारण वहाँ बिल्कुल नहीं होने का कोई कारण नहीं है!


ASCII से ब्रेल तक का रास्ता

हम देख सकते हैं कि प्रत्येक कोशिका थोड़ा सा प्रतिनिधित्व करती है, जो प्रत्येक कोशिका 'छिद्रित' है या नहीं।

अब हम प्रत्येक कोशिकाओं को बाइनरी के रूप में ASCII चरित्र के बिट्स का प्रतिनिधित्व करने के लिए आवंटित कर सकते हैं।

(1  )(16 )
(2  )(32 )
(4  )(64 )
(8  )( - )

* ( - )रिक्त है

अब हम ASCII को ब्रेल में बदल सकते हैं। उदाहरण के लिए, A(65 = 01000001) के बराबर है

उदाहरण

Input -> Output
Braille! -> ⠢⠺⠱⡱⡴⡴⠵⠑
(Upscaled)
.. .o o. o. .. .. o. o.
o. oo .o .o .o .o .o .o
.o .o .o .o oo oo oo ..
.. .. .. o. o. o. .. ..

निश्चित रूप से aहै , नहीं (जो मुझे लगता है q)?
नील

@ नील चुनौती सिर्फ "चार कोड + 10240 को चार्ट में परिवर्तित करने के लिए नहीं है।" और हाँ, aहै
आउटगोल्फर

@EriktheOutgolfer मैंने सुझाव नहीं दिया था कि यह गलत है , लेकिन यह गलत तरीके से किया गया है, क्योंकि इसमें गलत संख्या में छिद्रण कोशिकाएं हैं।
नील

@ नील ओह अच्छा। मुझे बस पुनर्गणना हुई और पता चला कि तुम सही हो।
मैथ्यू रोह

क्या यह किसी और को अजीब लगता है कि LSB (नीचे दाएं) को MSB (ऊपरी बाएं) के बजाय अप्रयुक्त छोड़ दिया जाता है?
जूलियन वुल्फ

जवाबों:


14

सीजेएम , 27 26 बाइट्स

80qf{i2b7Te[4/~\)\@+++2bc}

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

व्याख्या

ब्रेल कोड बिंदुओं को बड़े करीने से आदेश दिया जाता है ताकि व्यक्तिगत डॉट्स बाइनरी में गिने जाएं। हालाँकि, कोड बिंदुओं में बिट्स का क्रम अलग है। हम निम्नलिखित आदेश चाहते हैं:

04
15
26
37

जबकि इस क्रम में पात्रों को यूनिकोड में रखा गया है:

03
14
25
67

(जो थोड़े समझ में आता है, क्योंकि ऐतिहासिक रूप से, ब्रेल ने केवल पहले छह डॉट्स का उपयोग किया था।) ध्यान दें कि हमें 7डॉट की जरूरत नहीं है , क्योंकि इनपुट को एएससीआईआई रेंज में होने की गारंटी है। तो [6 5 4 3 2 1 0]एक इनपुट चरित्र के बिट्स की एक सूची दी गई है , हम उन्हें [3 6 5 4 2 1 0]सबसे महत्वपूर्ण स्थिति में नीचे-बाएं डॉट का प्रतिनिधित्व करने वाले बिट को खींचने के लिए, उनमें फिर से व्यवस्थित करना चाहते हैं ।

80     e# Push 80... we'll need this later.
q      e# Read all input.
f{     e# Map this block onto each character, putting a copy of the 80
       e# below each character.
  i    e#   Convert the character to its code point.
  2b   e#   Get its binary representation.
  7Te[ e#   Pad it to 7 bits with zeros. We've now got some bit list
       e#   [6 5 4 3 2 1 0].
  4/   e#   Split into chunks of 4: [[6 5 4 3] [2 1 0]]
  ~    e#   Dump them onto the stack: [6 5 4 3] [2 1 0]
  \    e#   Swap them: [2 1 0] [6 5 4 3]
  )    e#   Pull off the last element: [2 1 0] [6 5 4] 3
  \    e#   Swap: [2 1 0] 3 [6 5 4]
  @    e#   Rotate: 3 [6 5 4] [2 1 0]
  ++   e#   Concatenate twice: [3 6 5 4 2 1 0]
       e#   That's the reordering done.
  +    e#   Prepend the 80. That puts it in the 2^7 position of the
       e#   binary digit list, which gives it a value of 10240, which
       e#   is where the Braille characters start.
  2b   e#   Convert the bits back to an integer.
  c    e#   Convert the code point to the corresponding integer.
}%

1
के साथ चतुर चाल 80
आउटगॉल्फ

11

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

f=
s=>s.replace(/./g,c=>String.fromCharCode((c=c.charCodeAt())&7|c*8&64|c/2&56|10240))
<input oninput=o.textContent=f(this.value)><pre id=o>


अरे हाँ, मुझे लेने से पहले 2 से विभाजित करना चाहिए और साथ ही एक बाइट को बचाने के लिए।
मार्टिन एंडर

शायद jQuery के दुरुपयोग का इस्तेमाल किया जा सकता है?
मैथ्यू रोह


5

सीजेएम , 27 बाइट्स

नील से 1 बाइट चोरी।

q{i__8&8*@7&@2/56&++'⠀+}%

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

व्याख्या

यह मेरे अन्य CJam उत्तर के समान मूल विचार का उपयोग करता है, लेकिन बिट रूपांतरण को सूचीबद्ध करने के लिए आधार रूपांतरण और सूची हेरफेर के बजाय बिटवाइज़ अंकगणित का उपयोग करता है।

q        e# Read all input.
{        e# Map this block over each character...
  i__    e#   Convert the character to its code point and make two copies.
  8&     e#   AND 8. Gives the 4th bit, which we need to move to the 7th place.
  8*     e#   Multiply by 8 to move it up three places.
  @7&    e#   Pull up another copy and take it AND 7. This extracts the three
         e#   least significant bits which shouldn't be moved at all.
  @2/    e#   Pull up the last copy and divide by 2 to shift all bits down
         e#   by one place.
  56&    e#   AND 56. Extracts the three most-significant bits.
  ++     e#   Add all three components back together.
  '⠀+    e#   Add to the empty Braille character which is the offset for all
         e#   the code points and which converts the value to a character.
}%


2

गणितज्ञ 100 बाइट्स

FromCharacterCode[10240+#~Drop~{4}~Prepend~#[[4]]~FromDigits~2&/@ToCharacterCode@#~IntegerDigits~2]&

Ungolfed:

ToCharacterCode["Braille!0"]
PadLeft@IntegerDigits[%,2]
Prepend[Drop[#,{4}],#[[4]]]&/@%
FromDigits[#,2]&/@%
FromCharacterCode[%+10240]

+60 बाइट्स ने इसे लंबे फ़ंक्शन नामों में बांधा है।


1

जेली , 21 बाइट्स

O&€“¬®p‘æ.1,8,.+“'ṁ’Ọ

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

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

O&€“¬®p‘æ.1,8,.+“'ṁ’Ọ  Main link. Argument: s (string)

O                      Ordinal; map all characters to their Unicode code points.
   “¬®p‘               Yield the code points of the enclosed characters in Jelly's
                       code page, i.e., [1, 8, 112].
 &€                    Take the bitwise AND of each code point to the left and the
                       three code points to the right.
          1,8,.        Yield [1, 8, 0.5].
        æ.             Take the dot product of the array to the right and each flat
                       array in the array to the left.
                “'ṁ’   Yield 10240 = 250 × 39 + 239, where 39 and 239 are the
                       indices of ' and ṁ in Jelly's code page.
               +       Add 10240 to all integers to the left.
                    Ọ  Unordinal; convert all code points to their respective 
                       Unicode charcters.



0

चिप ,62 59 बाइट्स

h*
 Z~.
z.g+b
>xv<
||sf
Zx^<
Z< |
A/a/D
B/b
C/c
E/d
F/e
G/f

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

मुझे संदेह है कि मैं इसे और अधिक कर सकता हूं, बस समझ जाएगा कि कैसे ...

चिप इनपुट के प्रत्येक बाइट में बिट्स के संग्रह के रूप में पढ़ता है, वर्णमाला के पहले आठ अक्षरों (अपरकेस इनपुट है, कम आउटपुट है) द्वारा संदर्भित है:

HGFEDCBA

हमें इनपुट के उन बिट्स को आउटपुट के निम्नलिखित तीन बाइट्स में मैप करना होगा:

11100010 101000hd 10gfecba

कोड का शीर्ष आधा सभी अनुक्रमण कर रहा है, और पहले दो बाइट्स उत्पन्न करता है, निचला आधा तीसरा बाइट उत्पन्न करता है।

चूंकि विनिर्देश केवल ASCII के लिए 7 बिट्स को संभालने की आवश्यकता है, इसलिए हम जांच नहीं करते हैं H। आठवीं बिट को शामिल करने के लिए, लाइन B/bको बदल दें B/b/H

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.