“Ŀo‘’FQỌµḟ;¹V
ลองออนไลน์! หรือเรียกใช้สิบโปรแกรมแรก
พื้นหลัง
เจลลี่มีสตริงตัวอักษรหลากหลายประเภท “
ทั้งหมดของพวกเขาเริ่มต้นด้วย หากตัวอักษรมีมากกว่าหนึ่ง“
สตริงอาร์เรย์จะถูกส่งคืนและ“
แยกสตริงออกจากกัน
ยกตัวอย่างเช่นอัตราผลตอบแทน“abc“def”
['abc', 'def']
ขึ้นอยู่กับตัวอักษรตัวสุดท้ายของตัวอักษร (ใด ๆ ของ”«»‘’
ที่«
ไม่ได้ดำเนินการในปัจจุบัน) หนึ่งสามารถเลือกระหว่างตัวอักษรประเภทที่แตกต่างกัน สำหรับ‘
เราได้รับคะแนนรหัสในหน้ารหัสของเยลลี่แทนอักขระ Unicode ที่เกี่ยวข้อง
ยกตัวอย่างเช่นอัตราผลตอบแทน“abc“def‘
[[97, 98, 99], [100, 101, 102]]
ตัวอักษรในสามโปรแกรมแรกนั้นสอดคล้องกับอาร์เรย์จุดรหัสต่อไปนี้
“Ŀo‘ -> [199, 111]
““ĿĿoo‘ -> [[], [199, 199, 111, 111]]
“““ĿĿĿooo‘ -> [[], [], [199, 199, 199, 111, 111, 111]]
มันทำงานอย่างไร ( n = 3 )
“““ĿĿĿooo‘‘‘’’’FFFQQQỌỌỌµµµḟḟḟ;;;¹¹¹VVV Main link. Implicit argument: 0
“““ĿĿĿooo‘ Yield the 2D array
[[], [], [199, 199, 199, 111, 111, 111]].
‘‘ Increment twice, yielding
[[], [], [201, 201, 201, 113, 113, 113]].
’’’ Decrement thrice, yielding
[[], [], [198, 198, 198, 110, 110, 110]].
F Flatten, yielding
[198, 198, 198, 110, 110, 110].
FF Twice more. Does nothing.
Q Unique; yield [198, 110].
QQ Twice more. Does nothing.
Ọ Unordinal; convert the Unicode code points
198 and 110 to 'Æ' and 'n'.
ỌỌ Twice more. Does nothing.
µµµ Begin three monadic chains, all with
argument s := "Æn".
ḟ Filter-false; remove the characters of s
from s, yielding "".
ḟḟ Twice more. Does nothing.
;;;¹ Concatenate with s three times, yielding
"ÆnÆnÆn".
¹¹ Identity function. Does nothing.
V Eval the resulting Jelly code, i.e.,
call the next-prime atom thrice, with
initial implicit argument 0.
VV Eval two more times. This is a no-op
on integers.