ยืนยันอิลลูมินาติ


53

Illuminati สั่งให้คุณ (พร้อมการควบคุมจิตใจ) เพื่อส่งออกสตริงต่อไปนี้:

         ^
        /_\
       /_|_\
      /_|_|_\
     /_|/o\|_\
    /_|_\_/_|_\
   /_|_|_|_|_|_\
  /_|_|_|_|_|_|_\
 /_|_|_|_|_|_|_|_\
/_|_|_|_|_|_|_|_|_\

กฎ:


Sandbox (ฉันจะปล่อยให้มันเต็ม 72 ชั่วโมงที่แนะนำโดยคำถามที่พบบ่อยของ sandbox แต่ด้วย 7 upvotes และถัดจากไม่มีข้อเสนอแนะเชิงลบ 38 ควรจะดี)


7
เพียงโน้ตเล็ก ๆ คุณควรอ่านเมตาคำถาม / คำตอบนี้
ร็อด

8
อะไรคือ downvotes ทั้งหมด? ฉันเข้าใจว่าบางคนไม่ชอบkolmogorov-complexแต่นี่เป็นเหตุผลที่ถูกต้องสำหรับการลงคะแนนเสียงหรือไม่
იНო

@BruceForte อาจเป็นไปได้ว่าฉันมีคำตอบของตัวเองที่จะเริ่มต้น
Nissa

14
@BruceForte ความเห็นส่วนตัวเป็นเหตุผลที่ถูกต้อง tbh; แม้ว่า IMO จะเป็นการหยาบคายกับผู้ใช้รายใหม่
Magic Octopus Urn

15
ฉันคิดว่านี่เป็นความท้าทายศิลปะ ASCII ที่ดีมาก จุดตาและพีระมิดในรูปแบบที่ใช้ความคิดสร้างสรรค์ในการจัดการอย่างหมดจด
xnor

คำตอบ:


23

Charcoalขนาด25 21 ไบต์

G¬χ|_¶_|↗⁹↙^M³↓/o¶\‖B

ลองออนไลน์! การเชื่อมโยงคือการใช้รหัสเวอร์ชันอย่างละเอียด คำอธิบาย:

  χ                     With sides of length 10
 ¬                      In the directions down and left
G                       Draw a closed polygon (implicit side)
   |_¶_|                Filled with |_ and _| on alternate lines
        ↗⁹               Draw a line of 9 /s
          ↙^            Draw a ^ and move the cursor down and left
            M³↓         Move down 3 characters
               /o¶\     Print the left half of the eye
                   ‖B  Reflect the canvas keeping the right edge

นั่นไง! สงสัยว่ามันจะนานแค่ไหน
Nissa

1
@StephenLeppik ฉันอยู่ในโทรศัพท์ :-(
Neil

รอนั่นคือเหตุผลเดียว
Nissa

@StephenLeppik: ดีนั่นและขึ้นอยู่กับว่านานแค่ไหนก่อนที่ฉันจะสังเกตเห็นการแจ้งเตือนสำหรับโพสต์หลักใหม่ฉันเดา
Neil

@DLosc <เป็นหนึ่งในหลาย ๆ ทิศทาง - เมื่อใช้กับMultiprintคำสั่งมันจะทำให้สตริงที่จะพิมพ์สองครั้งเมื่อถูกขึ้นและลงทันทีที่ถูกต้อง แต่ก็ยังสามารถใช้เป็นทางลัดสำหรับ↗↘บริบทอื่น ๆ เช่นกัน
Neil


10

V , 37 ไบต์

9i|_á\|r/òÄó_|
>òC ^4jhR/o\j2hR\_/

ลองออนไลน์!

hexdump:

00000000: 3969 7c5f 1be1 5c7c 722f f2c4 f35f 7c0a  9i|_..\|r/..._|.
00000010: 3ef2 4320 5e1b 346a 6852 2f6f 5c1b 6a32  >.C ^.4jhR/o\.j2
00000020: 6852 5c5f 2f                             hR\_/

คำอธิบาย:

9i                              " Insert 9 copies of...
  |_                            "   '|_'
    <esc>                       " Return to normal mode
         á\                     " Append a backslash
           |                    " Move to the first character
            r/                  " Replace it with a forward slash
              ò                 " Recursively...
               Ä                "   Duplicate this line (upwards)
                ó               "   Remove one instance of..
                 _|             "     '_|'
>                               "   Indent this line with one space
 ò                              " End the loop
  C ^                           " Change this line (previously '/_\') to ' ^'
     <esc>                      " Return to normal mode
          4j                    " Move down 4 lines
            h                   " Move one character to the left
             R                  " Write this text over existing characters...
              /o\               "   '/o\'
                 <esc>          " Return to normal mode
                      j         " Move down a line
                       2h       " Move two characters to the left
                         R      " Write this text over existing characters...
                          \_/   " '\_/'

10

SOGL V0.12 , 31 27 25 ไบต์

 ^9∫Ƨ_|m└Κ}¹±§"/o¶\_”95žΓ

ลองที่นี่!

 ^                         push "^"
  9∫      }                do 9 times, pushing counter
    Ƨ_|                      push "_|"
       m                     mold that to the counter
        └Κ                   prepend "/"
           ¹               collect the lines in an array - ["^", "/_", "/_|", ..., "/_|_|_|_|_"]
            ±              reverse each                    ["^", "_/", "|_/", ..., "_|_|_|_|_/"]
             §             reverse as ascii-art:
                            ["         ^",
                             "        /_",
                             "       /_|",
                             ...,
                             "/_|_|_|_|_"]
              "/o¶\_”      push "/o
                                 \_"
                     95ž   insert that at [9; 5]
                        Γ  palindromize horizontally

หรือรุ่น 24 ไบต์โดยใช้¼(เว้นวรรคเป็นเส้นทแยงมุม) แทน±§:

 ^9∫Ƨ_|m└Κ}¹¼"/o¶\_”95žΓ

ลองที่นี่!



8

JavaScript (ES6), 95 92 ไบต์

f=(n=9,s='')=>n--?f(n,s+' ')+s+`/${n-4?n-3?'_|'.repeat(n):'_|/o\\|':'_|_\\_/_|'}_\\
`:s+`^
`

หรือ91 ไบต์กับบรรทัดใหม่ชั้นนำ - ซึ่งฉันคิดว่าไม่ได้รับอนุญาต:

f=(n=9,s=`
`)=>n--?f(n,s+' ')+s+`/${n-4?n-3?'_|'.repeat(n):'_|/o\\|':'_|_\\_/_|'}_\\`:s+`^`

การสาธิต

จัดรูปแบบและแสดงความคิดเห็น

f = (n = 9, s = '') =>    // n = line counter, s = leading spaces
  n-- ?                   // if we haven't reached the top:
    f(n, s + ' ') +       //   do a recursive call with one more leading space
    s +                   //   append the leading spaces
    `/${                  //   append the left border
      n - 4 ?             //   if this is not the 4th row:
        n - 3 ?           //     if this is not the 3rd row:
          '_|'.repeat(n)  //       append the brick pattern
        :                 //     else (3rd row):
          '_|/o\\|'       //       append the top of the eye
      :                   //   else (4th row):
        '_|_\\_/_|'       //     append the bottom of the eye
    }_\\\n`               //   append the right border + line-feed
  :                       // else:
    s + `^\n`             //   append the top of the pyramid and stop the recursion

อนุญาตให้มีช่องว่างนำหน้า
Nissa


5

Haskell, 110 107 ไบต์

"         ^\n"++do z<-[1..9];([z..8]>>" ")++'/':g z++"_\\\n"
g 4="_|/o\\|"
g 5="_|_\\_/_|"
g x=[2..x]>>"_|"

ลองออนไลน์!

จุดเริ่มต้นทั้ง 9 จุดนั้นเจ็บปวด

มันทำงานอย่างไร

"         ^\n"++         -- first line, followed by
do                       -- we use the "do" syntatic sugar for monads,
                         -- here the list monad 
   z<-[1..9]             -- for all 'z' from [1..9] perform the following
                         -- and collect the results in a single list
     ([z..8]>>" ")++'/'  --   make the spaces for the current line and
                         --   the left wall '/'
     g z                 --   call g to make the inner part
     "_\\\n"             --   append '_', '\' and a NL

g 4="_|/o\\|"            -- line 4 and 5 are implemented directly
g 5="_|_\\_/_|"
g x=[2..x]>>"_|"         -- all other lines are some copies of "_|"

แก้ไข: -3 ไบต์ขอบคุณ @Laikoni:



3

05AB1E , 47 42 40 ไบต์

'/„_|ûûû«η'^0ǝ.∞.C":;<IJK"Çv"/o\\_/"Nèyǝ

ลองออนไลน์!

'/„_|ûûû«                                # Push bottom left tier of pyramid.
         η                               # All prefixes of...
          '^0ǝ                           # Replace the tip.
              .∞.C                       # Mirror, Center.
                  ":;<IJK"Ç              # Push [58,59,60,73,74,75].
                           v"/o\\_/"Nèyǝ # Replace those indexes with the eye.

รุ่นโง่: „_|3×"_|/o\|".;„_|2×û"_|_\_/_".;


อื่น ๆ รุ่นที่โง่น้อยกว่า (แต่ก็แย่กว่า):

05AB1E , 42 ไบต์

•~µÎт•η4¾ǝ•Σ}•4ǝ•3x1•5ǝεS"|_/\^o"sèJ}€.∞.C

ลองออนไลน์!



2

PHP, 123 + 3 ไบต์

+3 ไบต์สำหรับการนับแท็บแปลก ๆ (มันยังคงเลื่อนเคอร์เซอร์ 8 ช่องว่างในคอนโซลใด ๆ !)

for($i=10;--$i;)$r.=str_pad(str_pad("
",$i)."/",20-$i,"_|")."\\";$r[48]=$r[65]="/";$r[50]=$r[63]="\\";$r[49]=o;echo"   ^$r";

หมายเหตุ: อักขระตัวแรกหลังจากนั้นecho"คืออักขระแท็บ!

ทำงานด้วย-nrหรือลองออนไลน์

รุ่นอื่น ๆ ความยาวเท่ากัน:

for(;$i++<9;)$r.=str_pad(str_pad("
",10-$i)."/",10+$i,"_|")."\\";$r[48]=$r[65]="/";$r[50]=$r[63]="\\";$r[49]=o;echo"    ^$r";

แล้ว Eclipse ล่ะ? ฉันไม่ได้ใช้งานมาระยะหนึ่งแล้ว แต่ฉันจำได้ว่าแท็บนั้นมีช่องว่าง 4 ช่อง
Nissa

@StephenLeppik Eclipse เป็นตัวแก้ไขไม่ใช่เชลล์
ติตัส

มันยังคงมีคอนโซล ไม่ต้องพูดถึงว่า SE markdown editor และ <pre> แท็กแบบอักษรมีแท็บ 4 ช่องว่าง
Nissa



2

Excel VBA, 104 ไบต์

ไม่ระบุชื่อฟังก์ชัน VBE หน้าต่างทันทีที่ยืนยันความจริง

รุ่น A:

?Spc(9)"^":For i=0To 8:[A1]=i:?Spc(8-i)"/_"[If(A1=3,"|/o\|_",If(A1=4,"|_\_/_|_",Rept("|_",A1)))]"\":Next

รุ่น B:

?Spc(9)"^":For i=0To 8:[A1]=i:?Spc(8-i)"/_"IIf(i=3,"|/o\|_",IIf(i=4,"|_\_/_|_",[Rept("|_",A1)]))"\":Next


1

Javascript 90 bytes (หากต้องการพารามิเตอร์ a = 9 จะต้องเป็น 92 bytes)

A=(a,x=``)=>a?A(a-1,x+" ")+x+"/".padEnd(a*2,a^5?a^4?"_|":"_|/o\\|":"_|_\\_/")+`\\
`:x+`^
`
console.log(A(9))


อาร์กิวเมนต์ภายนอกทั้งหมดจะต้องรวมอยู่ในผลรวมไบต์ดังนั้นสิ่งนี้จึงนับว่าเป็น 91 ไบต์
Nissa

1

Java 8, 156 ไบต์

v->"".format("%1$9s^\n%1$8s/a%1$7s/ba%1$6s/bba     /b/o\\|a    /b_\\_/ba   /bbbbba  /bbbbbba /bbbbbbba/bbbbbbbba","").replace("a","_\\\n").replace("b","_|")

คำอธิบาย:

ลองที่นี่

v->                        // Method with empty unused parameter and String return-type
  "".format(               //  Format the following String (`%1$Ns` = N spaces)
      "%1$9s^\n            //            ^
       %1$8s/a             //           /_\
       %1$7s/ba            //          /_|_\
       %1$6s/bba           //         /_|_|_\
            /b/o\\|a       //        /_|/o\|_\
           /b_\\_/ba       //       /_|_\_/_|_\
          /bbbbba          //      /_|_|_|_|_|_\
         /bbbbbba          //     /_|_|_|_|_|_|_\
        /bbbbbbba          //    /_|_|_|_|_|_|_|_\
       /bbbbbbbba","")     //   /_|_|_|_|_|_|_|_|_\
    .replace("a","_\\\n")  //  Replace all "a" with "_\" + new-line
    .replace("b","_|")     //  Replace all "b" with "_|"
                           // End of method (implicit / single-line return-statement)

สำหรับการอ้างอิงยากรหัสเป็น 179 ไบต์
Kevin Cruijssen

1

Julia, 152 141 139 130 127 120 113 112 ไบต์

q="_|";a+b=" "^a*b;a\b=replace(a,q^3,q*b,1);~n=n<0?9+"^\n":~(n-1)*(8-n+"/$(q^n)_\\\n");print(~8\"/o\\|"\"_\\_/")

อธิบาย:

#Define constant q to abbreviate this string
q="_|";

#Redefine the addition operator to compactly provide whitespace 
#where needed
a+b=" "^a*b;

#Redefine the inverse division operator so we can substitute 
#"_|_|_|" with "_|"*b very compactly
a\b=replace(a,q^3,q*b,1);

#Redefine the bitwise not operator to generate pyramid layers
#Defines them recursively, calling itself to generate previous 
#layers before appending its own. 
#The base case generates the tip. 
~n=n<0?9+"^\n":~(n-1)*(8-n+"/$(q^n)_\\\n");

#Print to output
print(

    #Pyramid with 8 body layers
    ~8

    #Then patch in the eye
    \"/o\\|"
    \"_\\_/"
)

1

C # (.NET แกน) , 174 153 ไบต์

()=>string.Format(@"{1,10}
{0,10}\
{0,9}{2}{3,10}{2}{0,7}|/o\{2}{3,8}\_/_{2}{0,5}{4}  {3}{4} {3}|_{4}{3}|_|_{4}","/_","^",@"|_\
","/_|_",@"|_|_|_|_|_\
")

ลองออนไลน์!

วิธีที่ไม่มีประสิทธิภาพในการสร้างพีระมิด แต่ก็น่าสนใจที่จะใช้มัน

กิตติกรรมประกาศ

-21 ไบต์ขอบคุณ @someone



0

JavaScript, 117 ไบต์

ฉันรู้สำหรับความจริงฉันไม่ได้ตีภาษากอล์ฟใด ๆ แต่อย่างน้อยฉันสามารถให้ทางออกของตัวเอง

$=>[...Array(10)].map((e,i)=>' '.repeat(9-i)+(i--?`/${['_|/o\\|','_|_\\_/_|'][i-3]||'_|'.repeat(i)}_\\`:'^')).join`
`

นี่คือตัวอย่าง:

var f = $=>[...Array(10)].map((e,i)=>' '.repeat(9-i)+(i--?`/${['_|/o\\|','_|_\\_/_|'][i-3]||'_|'.repeat(i)}_\\`:'^')).join`
`;
console.log(f());
console.log(f.toString().length);

คำอธิบาย:

$=>                                       // outer function start
[...Array(10)]                            // create an array to map
.map(…)                                   // map it
    (e,i)=>                               // mapping function start
    ' '.repeat(9-i)                       // spaces for padding
    +(i--?…:'^')                          // use the carat if at the top of the pyramid
        `/${…}_\\`                        // otherwise, make the sides + steps
            ['_|/o\\|','_|_\\_/_|'][i-3]  // use the patterns for the eye, if in the correct rows
            ||'_|'.repeat(i)              // otherwise, make the "bricks" structure
.join`
`                                         // join all the rows into a string (yes this part has a newline in it)

4
ไม่แนะนำให้ตอบทันทีปล่อยให้คนอื่นทำเอง
Okx

0

Javascript, 238 ไบต์

ความพยายามครั้งแรกของฉันที่ codegolfing: D

var f=()=>{let b=x=>' '.repeat(x),g='\\',h='/',i=1,st=[(b(9)+'^').split('')];for(;i<10;i++)st.push((b(9-i)+h+st.map(i=>'_').join('|')+g).split(''));st[4][8]=st[5][10]=h;st[4][9]='o';st[5][8]=st[4][10]=g;return st.map(s=>s.join('')).join('\n');}

document.getElementById("display").innerHTML = f();
console.log(f.toString().length);
<pre id="display">
</pre>


1
ยินดีต้อนรับสู่เว็บไซต์!
caird coinheringaahing

Hardcoding นั้นสั้นกว่าที่คุณมีอย่างแน่นอน คุณสามารถย่อให้สั้นลงด้วยคุณสมบัติบางอย่างของ ES6: function`s` แทนที่function('s'), a=>แทนที่จะ()=>, fill(x)แทนที่จะmap(e=>x), [...s]แทนที่จะเป็นs.split(''), ย้ายคำสั่งไปที่การforเริ่มต้น ฯลฯ
Nissa
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.