"
-x|"•L®y[Â-Γ•5вèJ.º.∊
এটি অনলাইনে চেষ্টা করুন।
25 24 বাইট বিকল্প:
… -|•B°”Ñ•3вèJ3ä'x«».º.∊
এটি অনলাইনে চেষ্টা করুন।
ব্যাখ্যা:
"\n -x|" # Push string "\n -x|"
•L®y[Â-Γ• # Push compressed number 5960566858660563
5в # Converted to Base-5 as list:
# [2,2,2,2,2,2,3,0,4,1,1,4,1,1,3,0,4,1,1,4,2,2,3]
è # Index each digit into the string
J # And join the list together
# "\n -x|" and [2,2,2,2,2,2,3,0,4,1,1,4,1,1,3,0,4,1,1,4,2,2,3]
# → "------x\n| | x\n| |--x"
.º # Intersect mirror everything horizontally
.∊ # Intersect mirror everything vertically (and output implicitly)
… -| # Push string " -|"
•B°”Ñ• # Push compressed integer 193812448
3в # Converted to Base-3 as list: [1,1,1,1,1,1,2,0,0,2,0,0,2,0,0,2,1,1]
è # Index each digit into the string
J # And join the list together
# " -|" and [1,1,1,1,1,1,2,0,0,2,0,0,2,0,0,2,1,1]
# → "------| | | |--"
3ä # Split the string into three parts: ["------","| | ","| |--"]
'x« '# Append an "x" to each: ["------x","| | x","| |--x"]
» # Join by newlines: "------x\n| | x\n| |--x"
.º # Intersect mirror everything horizontally
.∊ # Intersect mirror everything vertically (and output implicitly)
আমার এই 05AB1E ডগা দেখুন (অধ্যায় ইপিএসে দক্ষিন কোরিয়ায় কিভাবে পূর্ণসংখ্যার কম্প্রেস কিভাবে? ) কেন বুঝতে •L®y[Â-Γ•হয় 5960566858660563এবং •B°”Ñ•হয় 193812448।
@ ম্যাজিক অ্যাক্টোপাসউর্ন এর এএসসিআইআই আর্ট জেনারেটরের জন্য •L®y[Â-Γ•5BžLR"\n -x|"‡এবং এর জন্য ধন্যবাদ•B°”Ñ•3BžLR" -|"‡ , যার পরে স্ট্যাকের উপর নম্বর এবং স্ট্রিং অদলবদল করে, вপরিবর্তে ব্যবহার করুন Bএবং স্ট্রিংয়ের সাথে সূচী দ্বারা ট্রান্সলিট্রেট আরও গল্ফ করা হয়েছে è।