แปลโปรแกรม Glypho


17

เมื่อได้รับอินพุตของโปรแกรมGlyphoใด ๆ ที่ถูกต้องให้ส่งออกคู่ของ "มนุษย์ที่อ่านได้"

Glypho เป็นแนวคิด esolang ที่น่าสนใจ:

การอ้างอิงการเรียนการสอนให้ที่นี่ สำหรับแต่ละคำสั่งตัวอักษร abcd แสดงถึงสัญลักษณ์ที่ประกอบไปด้วยแต่ละคำสั่ง a หมายถึงสัญลักษณ์เฉพาะอันแรก b หมายถึงสัญลักษณ์เฉพาะอันที่สองเป็นต้น

aaaa ..... n NOP - no operation; do nothing
aaab ..... i Input - push input onto top of stack
aaba ..... > Rot - pops top stack element and pushes to bottom of stack
aabb ..... \ Swap - swaps top two stack elements
aabc ..... 1 Push - pushes a 1 onto the top of stack (creates new element)
abaa ..... < RRot - pops bottom element and pushes to top of stack
abab ..... d Dup - Duplicates top stack element
abac ..... + Add - pops top two elements and pushes their sum
abba ..... [ L-brace - skip to matching ] if top stack element is 0
abbb ..... o Output - pops and outputs top stack element
abbc ..... * Multiply - pops top two elements and pushes their product
abca ..... e Execute - Pops four elements and interprets them as an instruction
abcb ..... - Negate - pops value from stack, pushes -(value)
abcc ..... ! Pop - pops and discards top stack element
abcd ..... ] R-brace - skip back to matching [

(เครดิต: Brian Thompson aka Wildhalcyon)

ดังนั้นสำหรับตัวอย่างเช่นPPCGจะเป็นตัวแทนของกด instruction- PPCGตรงกับรูปแบบaabcที่aแสดงให้เห็นถึงP, bหมายถึงCและแสดงให้เห็นถึงc G

อินพุตจะเป็นสตริงเดี่ยวที่ประกอบด้วยอักขระ ASCII ที่พิมพ์ได้เท่านั้น มันจะมีความยาวหารด้วยสี่ (duh) เสมอ

เอาต์พุตคือแต่ละกลุ่มของสี่อักขระในสตริงอินพุตที่แทนที่ด้วยคำสั่งที่ระบุ ใช้ชื่อคำสั่งตัวอักษรตัวเดียว (ที่อยู่ด้านหลังจุดห้าจุดในตารางข้างต้น)

เนื่องจากนี่คือรหัสที่สั้นที่สุดเป็นไบต์จะเป็นผู้ชนะ

กรณีทดสอบ:

In                                Out
------------------------------------------------
Programming Puzzles & Code Golof  ]!]!]]]+
nananananananana batman!          dddd]]
;;;;;;;:;;:;;;::                  ni>\
llamas sleep                      1-*
8488133190003453                  <[oe
<empty string>                    <empty string>

4
อ่าใช่รหัสโกลอฟ sporot ที่ฉันชอบ
KoreanwGlasses

คำตอบ:


5

Pyth, 37 35 34 ไบต์

รหัสมีอักขระที่ไม่สามารถพิมพ์ได้ดังนั้นนี่คือxxdhexdump:

0000000: 5663 7a34 7040 2e22 216f d78c 40bf d4f0  Vcz4p@."!o..@...
0000010: 38d6 7dfe 7312 3ff8 ea22 6958 4e7b 4e55  8.}.s.?.."iXN{NU
0000020: 5433                                     T3

นี่เป็นรุ่นสำหรับพิมพ์ที่ขนาด 36 ไบต์:

Vcz4p@"ni >\\1   <d+[o*e-!]"iXN{NUT3

ลองออนไลน์ ชุดทดสอบ

คำอธิบาย

Vcz4p@."…"iXN{NUT3       implicit: z = input
  z                      input
 c 4                     split to 4-character blocks
V                        loop over that in N
           X               replace...
            N                in current part
             {N              unique chars in current part, in order
               UT            with numbers 0-9
          i      3         interpret as base 3
     @                     take that item of
      ."…"                   string "ni >\\1   <d+[o*e-!]"
    p                      and print without newline


3

JavaScript (ES6), 97

สำหรับแต่ละบล็อกที่มี 4 ตัวอักษรฉันจะแทนที่แต่ละสัญลักษณ์ด้วยตำแหน่งของมันในบล็อกเพื่อรับตัวเลขฐาน 4 'aabc' -> '0023'เช่น ตัวเลขที่เป็นไปได้อยู่ในช่วง 0..0123 นั่นคือ 0..27 เป็นทศนิยม ฉันใช้ตัวเลขเป็นดัชนีเพื่อค้นหาอักขระคำสั่งที่ถูกต้องจากสตริง 28 ตัวอักษร

s=>s.replace(/.{4}/g,s=>'n..i....>.\\1....<d.+[o.*e-!]'[[...s].map(c=>n=n*4+s.indexOf(c),n=0),n])

ทดสอบ

F=s=>s.replace(/.{4}/g,s=>'n..i....>.\\1....<d.+[o.*e-!]'[[...s].map(c=>n=n*4+s.indexOf(c),n=0),n])

function test() { O.textContent=F(I.value) }

test();
#I { width:90% }
<input id=I value="nananananananana batman!" oninput="test()">
<br><span id=O></span>


3

MATLAB, 291 ไบต์

ฉันลังเลเป็นเวลานานถ้าฉันควรตอบคำตอบของฉัน ฉันเพิ่งเล่นกับ MATLAB ฉันรู้ว่ามันเป็นไปไม่ได้ที่จะสร้างรหัสที่หนาแน่น (จำนวนคำสั่ง / ไบต์จำนวนน้อยประมาณ 3 เท่าของโซลูชั่นที่มีค่ามากกว่า ~ 100 ไบต์) และ MATLAB อาจไม่เหมาะกับรหัสกอล์ฟและฉันใหม่กับรหัสกอล์ฟ . แต่ฉันแค่อยากลองและรหัสก็ใช้ได้ (เก็บอักขระบรรทัดใหม่ไว้) คำแนะนำใด ๆ ยินดีต้อนรับ : P

i=input('','s');
l=reshape(i,4,length(i)/4)';
m=']!- e';m(9)='*';m(12:22)='o[   + d  <';m(33:34)='1\';m(39)='>';m(57)='i';m(64)='n';
s='';
for k = 1:size(l,1)
n=l(k,:);
c=combvec(n,n);
t=triu(reshape(c(1,:)==c(2,:),4,4),1);
t=sum(t([5,9:10,13:15]).*2.^[5:-1:0]);
s=[s,m(t+1)];
end
display(s)

1
ยินดีต้อนรับสู่ Programming Puzzles & Code Golf! ยินดีต้อนรับทุกคำตอบแม้ว่าพวกเขาจะได้รับ outgolfed จำนวนไร้สาระ (เคยเกิดขึ้นกับฉันมาก่อนแน่นอน) ;) คำตอบแรกที่ดี!
Doorknob

2

JavaScript (ES6), 115 101 ไบต์

s=>s.replace(/..../g,g=>"ni >\\1   <d+[o*e-!]"[[...g].map(c=>r=r*3+(m[c]=m[c]||++i)-1,i=r=0,m={})|r])

บันทึกแล้ว 14 ไบต์ขอบคุณ@ edc65 !

คำอธิบาย

เก็บรายการคำแนะนำในสตริงด้วยอักขระแต่ละตัวที่ดัชนี base-3 ตัวอย่างเช่น+สอดคล้องกับabacสิ่งที่สามารถแสดงในฐาน -3 เป็น0102หรือ11ทศนิยม คำสั่งเดียวที่ไม่สามารถแสดงใน base-3 ได้คือ]แต่ด้วยอัลกอริธึมที่ใช้ในการคำนวณตัวเลขฐาน 3 มันจะสิ้นสุดลงอย่างสะดวกโดยต้องอยู่ในตำแหน่งที่ 18 ในตอนท้ายของสตริง

s=>
  s.replace(/..../g,g=>    // replace each four-character group with it's instruction
    "ni >\\1   <d+[o*e-!]" // list of instructions at their base-3 index
    [
      [...g].map(c=>       // for each character c
        r=r*3+(m[c]=m[c]   // shift r left and add the number associated with c to r
          ||++i)-1,        // if nothing is associated, associate the next number to c
                           // save i + 1 to m[c] so that it is truthy for 0
        i=                 // i = current number to assign to the next unique character
        r=0,               // r = 4-character group as a base-3 number
        m={}               // m = map of numbers assigned to each character
      )
      |r                   // return r
    ]
  )

ทดสอบ


คุณสามารถบันทึกจำนวนไบต์ที่ไม่ได้ใช้parseIntและคำนวณตัวเลขด้วยผลรวมซ้ำและคูณ วิธีนี้จะหลีกเลี่ยงปัญหา '0123' ที่ไม่ถูกต้องในฐาน 3 แต่ให้ 1 * 9 + 2 * 6 + 3 == 18 ซึ่งเป็นตำแหน่งที่ดี ผลลัพธ์:F=s=>s.replace(/..../g,g=>"ni]>\\1 <d+[o*e-!]"[[...g].map(c=>r=r*3+(m[c]=m[c]||++i)-1,r=i=0,m={})|r])
edc65

@ edc65 คำแนะนำที่ดี ขอบคุณ!
user81655

0

Python 2, 158 ไบต์

"test"จะเข้าเช่น เอาท์พุทเป็นรายการของตัวละคร

def b(s,i=0):
    for c in s:i=i*4+s.index(c)
    return"n..i....>.\\1....<d.+[o.*e-!]"[i]
print map(b,(lambda l,n:[l[i:i+n]for i in range(0,len(l),n)])(input(),4))

ลองออนไลน์

Ungolfed:

def chunks(l, n):
    return (l[i:i+n] for i in range(0, len(l), n))

def convert(inst):
    i = 0
    for c in inst:
        i = i*4 + inst.index(c)

    return "n..i....>.\\1....<d.+[o.*e-!]"[i]

print map(convert, chunks(input(), 4))
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.