วาดเครื่องหมายทับ X อันใหญ่


21

รับจำนวนเต็มไม่เป็นลบพิมพ์Xที่มีขนาดใหญ่ Xเป็นเอาต์พุตสำหรับอินพุต0และคุณจะเพิ่มเครื่องหมายสแลชเท่ากับอินพุตในแต่ละทิศทางเพื่อขยายXอินพุตให้ใหญ่ขึ้น

กรณีทดสอบ

0

X

1

\ /
 X
/ \

2

\   /
 \ /
  X
 / \
/   \

...

10

\                   /
 \                 /
  \               /
   \             /
    \           /
     \         /
      \       /
       \     /
        \   /
         \ /
          X
         / \
        /   \
       /     \
      /       \
     /         \
    /           \
   /             \
  /               \
 /                 \
/                   \

กฎระเบียบ

คุณอาจพิมพ์ผลลัพธ์หรือส่งคืนสตริงหรือรายการสตริงจากฟังก์ชัน ขึ้นบรรทัดใหม่รวมถึงช่องว่างภายในเพิ่มเติมที่ไม่ส่งผลกระทบต่อปรากฏขึ้นได้รับอนุญาต

นี่คือดังนั้นคำตอบที่สั้นที่สุดในจำนวนไบต์ชนะ!



6
... ฉันแค่รอวิธีแก้ปัญหาถ่านขนาด 1 ไบต์
Leun Nun

@LeakyNun ฉันจะแปลกใจถ้า Charcoal สามารถจัดการกับคนXตรงกลางได้อย่างง่ายดาย(ส่วนหนึ่งของเหตุผลที่ฉันเพิ่ม) แต่ใครจะรู้: D
Stephen


คำตอบ:


6

Canvas ขนาด 3 ไบต์

╵\┼

ลองที่นี่!

ขนาดครึ่งหนึ่งของคำตอบ Charcoal: D

╵    increment the input
 \   create a diagonal that long
  ┼  and quad-palindromize, mirroring what's required, with 1 overlap;
     This overlaps the `/` and `\`, resulting in `X`

แดงนั่นสั้น
dylnan

: ||||||| +1 สำหรับความเป็นกอล์ฟ
เฉพาะ ASCII เท่านั้น

ฉันยังสงสัยว่าภาษาสแต็กที่ใช้โดยทั่วไปมักจะมีความเร็วมากกว่าภาษาอื่นหรือไม่?
ASCII เท่านั้น

@ ASCII-only jelly
Okx

@Okx * stack-based / tacit
ASCII เท่านั้น

22

ถ่าน 6 ไบต์

PX⁺¹NX

เรื่องไร้สาระของคุณไม่หยุดฉัน;)

ลองออนไลน์!


2
TIO ดู ... น่าสนใจเมื่อคุณใส่ตัวเลขจำนวนมากเข้าไปในนั้น
Stephen

@StephenS เนื่องจากการห่อเท่านั้น
Okx

ฉันรู้ว่ามันเป็นเพียงสัญชาตญาณที่ห่อของทั้งหมดได้รับการจัดชิดซ้าย (เพราะช่องว่างไม่ได้ถูกห่อ)
Stephen

5 chars (postdates challenge) เพียงเพื่อให้เข้าใกล้ Canvas มากขึ้นเล็กน้อย
ASCII- เท่านั้น

16

JavaScript (ES6), 79 ไบต์

ใช้ฟังก์ชันเรียกซ้ำgที่ดำเนินการผ่านกริดและสร้างอักขระเอาต์พุตโดยอักขระ

n=>(g=x=>`/\\ X
`[~x?x-y?x+y-w&&2:x-n?1:3:4]+(~y?g(~x--?x:y--&&w):''))(y=w=n*2)

อย่างไร?

ทั้งตัวแปรxและyซ้ำจาก2nถึง-1โดยที่nคืออินพุต

สำหรับแต่ละตำแหน่ง(x, y)ในตารางเราเลือกหนึ่งในตัวละครเหล่านี้:

  • 0: /
  • 1: \
  • 2: พื้นที่
  • 3: X
  • 4: ขึ้นบรรทัดใหม่

ใช้การทดสอบต่อไปนี้:

  • ~x: Falsy ถ้าx == -1 : เรามาถึงจุดสิ้นสุดแล้ว
  • x-y: เท็จถ้าx == y : เราตั้งอยู่บนแนวต้าน
  • x+y-w: เท็จถ้าx + y == w : เราอยู่บนเส้นทแยงมุม
  • x-n: Falsy ถ้าx == n : เนื่องจากการทดสอบนี้จะดำเนินการเฉพาะเมื่อx == yซึ่งหมายความว่าเราตั้งอยู่ในใจกลางของตารางที่แน่นอน

และต้นไม้ตัดสินใจต่อไปนี้:

decision tree

การสาธิต


4
นี่คือ ... JavaScript? เกิดอะไรขึ้นกับคุณเพื่อนเก่า
roberrrt-s

13

MATL , 16 ไบต์

'\/X 'iEQXytEP+)

ลองออนไลน์!

พิจารณาการป้อนข้อมูล2เป็นตัวอย่าง สแต็กจะแสดงที่นี่คว่ำเช่นองค์ประกอบที่ต่ำกว่าเป็นคนที่ผลักดันล่าสุด

'\/X '  % Push this string
        %   STACK: '\/X '
iEQ     % Input a number, n. Multiply by 2, add 1: gives 2*n+1
        %   STACK: '\/X '
                   5
Xy      % Identity matrix of that size
        %   STACK: '\/X '
                   [1 0 0 0 0;
                    0 1 0 0 0;
                    0 0 1 0 0;
                    0 0 0 1 0;
                    0 0 0 0 1]
tEP     % Duplicate, multiply each entry by 2, flip vertically
        %   STACK: '\/X '
                   [1 0 0 0 0;
                    0 1 0 0 0;
                    0 0 1 0 0;
                    0 0 0 1 0;
                    0 0 0 0 1]
                   [0 0 0 0 2;
                    0 0 0 2 0;
                    0 0 2 0 0;
                    0 2 0 0 0;
                    2 0 0 0 0]
+       % Add the two matrices
        %   STACK: '\/X '
                   [1 0 0 0 2;
                    0 1 0 2 0;
                    0 0 3 0 0;
                    0 2 0 1 0;
                    2 0 0 0 1]
)       % Index into the string. Indexing is 1-based and modular, so 1 picks
        % the first character ('\'), ..., 0 picks the last (space)
        %   STACK: ['\   /';
                    ' \ / ';
                    '  X  ';
                    ' / \ ';
                    '/   \']
        % Implicit display

ฉันต้องการทำสิ่งที่คล้ายกันในอ็อกเทฟ แต่คุณเอาชนะฉันได้และใน MATL มันสั้นกว่าอ็อกเทฟยิ่งไปกว่านั้นงานที่ยอดเยี่ยมมาก!
Michthan

@Michthan ขอบคุณ! รุ่นอ็อกเทฟจะมีมูลค่าการโพสต์เช่นกัน การชดเชยของฉันคือ 38 ไบต์คุณเป็นอะไร
Luis Mendo

ฉันคิดเกี่ยวกับมันทุกวันหยุดสุดสัปดาห์และไม่สามารถหาวิธีที่มีประสิทธิภาพมากกว่าที่คุณใช้ที่นี่ .. ดังนั้นเครดิตทั้งหมดควรไปหาคุณสำหรับรุ่นคู่
Michthan

6

C, 108 106 ไบต์

a;g(n){for(int b=2*n,i=1,c=47;a+=i;b?puts(""):(i=-i,c=92),b-=2*i)printf("%*c%*c",a,b?c+45*i:88,b,b?c:10);}

ลองออนไลน์!

(−2 การเล่นกอล์ฟต้องขอบคุณ MD XF)

มันพิมพ์อักขระสองตัว (ในตอนแรกc = 47ซึ่งเป็นเครื่องหมายทับและc + 45ซึ่งเป็นแบ็กสแลชจากนั้นจะถูกสลับ) ด้วยความกว้างของฟิลด์แบบไดนามิก

ความกว้างของเขตข้อมูลเริ่มต้นที่1และ2nและในแต่ละการวนซ้ำความกว้างแรกจะเพิ่มขึ้น 1 และส่วนที่สองจะลดลง 2

เมื่อความกว้างของฟิลด์ที่สองกลายเป็น 0 มันจะส่งออก'X'และขึ้นบรรทัดใหม่แทนอักขระปกติและกลับทิศทางของการเพิ่มขึ้น ( i) บรรทัดใหม่ถูกพิมพ์สำหรับบรรทัดอื่นทั้งหมดแยกจากกัน ( puts(""))


106 ไบต์: a,b,i=1,c;g(n){for(b=2*n,c=47;a+=i;b?puts(""):(i=-i,c=92),b-=2*i)printf("%*c%*c",a,b?c+45*i:88,b,b?c:10);} ลองออนไลน์!
MD XF

ขอบคุณสำหรับความคิด! ฉันใช้เพียงบางส่วนเพื่อให้แน่ใจว่าสามารถเรียกรหัสได้สองครั้ง
Anatolyg

5

shortC , 111 ไบต์

s(x){Wx--)R" ")}j;f(x){O;j<x;j++)s(j),P92),s((x-j)*2-1),R"/\n");s(x);R"X\n");Wj--)s(j),P47),s((x-j)*2-1),R"\\\n

ขึ้นอยู่กับคำตอบของฉัน C การแปลง:

  • R -> printf(
  • P -> putchar(
  • W -> while(
  • O -> for(
  • ปิดการแทรกอัตโนมัติ ");}

นอกจากนี้ยังใช้รหัส ASCII สำหรับและ\/

ลองออนไลน์!



5

C, 168 155 150 ไบต์

-5 ขอบคุณ Computronium

#define p printf(
s(x){while(x--)p" ");}j;f(x){for(;j<x;j++)s(j),p"\\"),s((x-j)*2-1),p"/\n");s(x);p"X\n");while(j--)s(j),p"/"),s((x-j)*2-1),p"\\\n");}

สามารถเล่นกอล์ฟได้อย่างแน่นอน ฉันทำเช่นนั้น ลองออนไลน์!

Ungolfed:

int space(int x)
{
    while (x--)
        putchar(' ');
}

int f(int x)
{
    for (int j = 0; j < x; j++) {
        space(j);
        printf("\\");
        space((x-j)*2-1);
        printf("/\n");
    }

    space(x);
    puts("X");

    while (j--) {
        space(j);
        putchar('/');
        space((x-j)*2-1);
        printf("\\\n");
    }
}

2
คุณสามารถสูญเสีย 5 ตัวอักษรโดยการกำหนด p ให้เป็น "printf (" แทน "printf"
Computronium

3

V , 21 ไบต์

éXÀñ>HÄÒ r\Á/YGpr/$r\

ลองออนไลน์!

hexdump:

00000000: e958 c0f1 3e48 c4d2 2072 5cc1 2f59 4770  .X..>H.. r\./YGp
00000010: 722f 2472 5c                             r/$r\

คำอธิบาย:

éX                      " Insert an 'X'
  Àñ                    " Arg1 times:
    >H                  "   Add a space to every line.
                        "   Conveniently, this also puts us on the first line
      Ä                 "   Duplicate this line
       Ò                "   And replace the whole line with spaces
         r\             "   Replace the first char with '\'
           Á/           "   Append a '/' char
             Y          "   Yank this line
              G         "   Move to the last line
               p        "   And paste the line we yanked
                r/      "   Replace the first character with a '/'
                  $     "   Move to the end of the line
                   r\   "   And replace the last character with a '\'

โดยพื้นฐานแล้วเรามีใส่ X, N ครั้งขยายทับ

แต่มันไม่ง่ายอย่างนั้นเพราะเราต้องเพิ่มเครื่องหมายทับในครั้งแรก หากเครื่องหมายทับมีอยู่แล้วเราสามารถเขียนทับเครื่องหมายทับได้เป็น:

>HÄX2pGÙX2p

ซึ่งจะช่วยเรา 6 ไบต์


3

C #, 157 122 120 bytes

_=d=>"".PadLeft(d)
a=>{var s=_(a)+"X\n";for(int i=0;++i<=a;)s=$@"{_(a-i)}\{_(i*2-1)}/
{s+_(a-i)}/{_(i*2-1)}\
";return s;}

เวอร์ชันที่ไม่ถูกปรับแต่ง:

 Func<int, string> _ = (d) =>"".PadLeft(d);
        Func<int, string> func = a => {

            var s = _(a) + "X\n";

            for (int i = 0; ++i <= a;) {

                s = $@"{_(a - i)}\{_(i * 2 - 1)}/
{s + _(a - i)}/{_(i * 2 - 1)}\
";

            }
            return s;
        };

1
คุณสามารถย้ายฟังก์ชั่นที่ไม่ระบุตัวตนอื่น ๆ ออกจากครั้งแรกและรวมเป็น_=d=>new string(' ',d);(หมายเหตุไม่จำเป็นต้องใช้วงเล็บปีกกาd) คุณสามารถลบวงเล็บปีกการอบวงสำหรับ ใช้ประโยชน์จากสตริงคำต่อคำด้วยดังนั้นคุณไม่จำเป็นต้องหลบหลีกแบ็กสแลชทั้งหมด หากคุณตั้งค่าi=0จากนั้นคุณสามารถทำ++i<a+1และลบi++และลบ
TheLethalCoder

นอกจากนี้ยังมีสตริงคำต่อคำที่คุณไม่จำเป็นต้องรวม\nตัวดึงข้อมูลบรรทัดจริงจะใช้งานได้ แต่ฉันไม่แน่ใจว่าถ้าคุณจะสามารถลบวงเล็บปีกการอบวงสำหรับคุณจะต้องลอง
TheLethalCoder

1
หลังจากใช้คำแนะนำแรกโดย TheLethalCoderคุณยังสามารถแทนที่++i<a+1สำหรับการ++i<=a แก้ไขคุณยังสามารถบันทึก 4 ไบต์ได้มากขึ้นโดยการเปลี่ยนFuncจากnew string(' ',d)เป็น"".PadLeft(d)
auhmaan

ขอบคุณสำหรับคำแนะนำ @TheLethalCoder ฉันอนุญาตให้ประกาศฟังก์ชั่น 2 อย่างเช่นนั้นจะไม่ทำให้ C # golfing สั้นลงหากเราทำได้ใช่ไหม
LiefdeWen

1
@StefanDelport มีการอภิปราย meta เกี่ยวกับเรื่องนี้อยู่ที่ไหนสักแห่ง แต่เพราะฉันเชื่อว่าคุณสามารถทำได้ตราบเท่าที่คุณแสดงชื่อฟังก์ชั่น ในกรณี_นี้
TheLethalCoder

3

Mathematica, 71 ไบต์

(ได้รับแรงบันดาลใจบางส่วนจากโซลูชั่น 104 ไบต์ของ Jenny_mathy)

""<>#&/@(#"\\"+Reverse@#"/"&@IdentityMatrix[2#+1]/.{0->" ",a_+_->"X"})&

ส่งคืนรายการสตริง

คำอธิบาย: IdentityMatrix[2#+1]สร้างเมทริกซ์ที่มีขนาดเหมาะสมด้วย 1s ตามแนวทแยงมุมและ 0s ที่อื่น ต่อไปเราจะคูณด้วย"\\"(เป็นทับขวาหนี) ซึ่งทำให้มันเมทริกซ์ที่มีเครื่องหมายตามแนวทแยงและ 0s ที่อื่นแน่นอนตั้งแต่ 1 ครั้งทับขวาเป็นทับขวาและ 0 ครั้งทับขวาเป็น 0 เราเพิ่มรายการนี้ลง"/"ครั้งย้อนกลับที่จะทำให้ รูปร่าง X เรากำลังทำเกือบยกเว้นยังคงมี 0s "\\" + "/"ทุกที่และตรงกลางเป็น เราจะแก้ไขปัญหาทั้งสองเรื่องนี้โดยการแทน" "สำหรับ0และ"X"สำหรับa_+_ซึ่งตรงกับผลรวมของสองสิ่งใด ๆ (เช่น_+_ควรยกเว้น Mathematica เป็นคนฉลาดเกินไปสำหรับการที่ดีของตัวเองและตีความว่าเป็นครั้งที่ 2 _) ในที่สุด""<>#&/@เปลี่ยนสิ่งนี้ให้เป็นรายการสตริง


3

Java (OpenJDK 8) , 135 ไบต์

i->{int k=0,j,l=2*i+1;String[]s=new String[l];for(;k<l;k++)for(s[k]="",j=0;j<l;j++)s[k]+=j==k?j==i?"X":"\\":j==l-1-k?"/":" ";return s;}

การแสดงออกของแลมบ์ดาที่ใช้และจำนวนเต็มและส่งกลับอาร์เรย์ของสตริง

ลองออนไลน์!

Ungolfed:

i->{
    int k=0,j,l=2*i+1;                // Some variables to be used
    String[]s=new String[l];            // Return array (size 2*i+1)
    for(;k<l;k++)                       // For each array entry
        for(s[k]="",j=0;j<l;j++)        // Set each character to 
            s[k]+=j==k?j==i?"X":"\\"    // \ or X if it's the jth character of the jth row
                 :j==l-1-k?"/"          // / if it's the opposite char
                 :" ";                  // else blank
    return s;
}

3

T-SQL, 201 ไบต์

DECLARE @ INT SELECT @=a FROM t DECLARE @i INT=@
WHILE @>0BEGIN PRINT SPACE(@i-@)+'\'+SPACE(2*@-1)+'/'SET @-=1 END
PRINT SPACE(@i)+'X'WHILE @<@i BEGIN SET @+=1 PRINT SPACE(@i-@)+'/'+SPACE(2*@-1)+'\'END

จัดรูปแบบ:

DECLARE @ INT 
SELECT @=a FROM t 
DECLARE @i INT=@
WHILE @>0
    BEGIN
        PRINT SPACE(@i-@)+'\'+SPACE(2*@-1)+'/'
        SET @-=1 
    END
PRINT SPACE(@i)+'X'
WHILE @<@i 
    BEGIN 
        SET @+=1 
        PRINT SPACE(@i-@)+'/'+SPACE(2*@-1)+'\'
    END

การป้อนข้อมูลผ่านทางคอลัมน์ในชื่อตารางที , ตามแนวทางของเรา


3

Ruby , 66 ไบต์

ฟังก์ชั่นวนซ้ำ

f=->x{?X[x]||"\\#{s=' '*(2*x-1)}/
#{f[x-1].gsub /^/,' '}
/#{s}\\"}

ลองออนไลน์!

คำอธิบาย

f=->x{                  # Start of recursive function named `f`
      ?X[x]||           # Return 'X' if x==0, otherwise the following:
"\\#{s=' '*(2x-1)}/     #  Top edge of the cross. Save no. of spaces needed
#{f[x-1]                #  Get result of f[x-1]
        .gsub /^/,' '}  #  Regex sub to left-pad every line w/ a space
/#{s}\\"                #  Bottom edge of cross (insert saved no. of spaces)

3

เยลลี่ , 24 17 ไบต์

Ḥ‘=þ`µḤ+Uị“/\x ”Y

ลองออนไลน์!

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

Ḥ‘=þ`µḤ+Uị“/\x ”Y   main link, input a
Ḥ‘                  input doubled and incremented
   þ                Make a table: Apply  
  =                 "equals"/ to      
    `               each element in range(2a+1) cartesian multiplied with itself.
                      eg. For input 1: [1=1,1=2,1=3],[2=1,2=2,2=3],[3=1,3=2,3=3]      
     µ              on this array:
       +            add: 
      Ḥ             double of it to
        U           its reverse (changes south-east to north-west)
         ị“/\x ”    index into the string "/\x " to get the right characters
                Y   join by newlines for the final output.

-6 ไบต์ขอบคุณ @LeakyNunและ-1 ไบต์พร้อมการปรับปรุงเพิ่มเติม



2

แบตช์, 201 ไบต์

@echo off
set s= /
for /l %%i in (2,1,%1)do call set s=  %%s%%
set s=\%s%
for /l %%i in (-%1,1,%1)do call:c
exit/b
:c
echo %s%
set s=%s:\ = \%
set s=%s:X =/\%
set s=%s:\/=X %
set s=%s: /=/ %

เริ่มต้นด้วยการสร้างบรรทัดบนสุดจากนั้นหลังจากพิมพ์แต่ละบรรทัดแล้วเลื่อนไป\ทางขวาหนึ่งช่องว่างและ/ทางซ้ายหนึ่งครั้งเพื่อให้แน่ใจว่าพวกเขาสร้างช่องว่างXตรงกลาง



2

เรติน่า 74 ไบต์

.+
$* X
+`^ ( *).( *)
$1\  $2/¶$&
+`¶ ( *).( *).?$
$&¶$1/  $2\
m` (\W)$
$1

ลองออนไลน์! คำอธิบาย:

.+
$* X

Xสถานที่

+`^ ( *).( *)
$1\  $2/¶$&

เริ่มต้นที่การXทำงานขึ้นไปวาง\แนวทแยงมุมไปทางซ้ายในแต่ละครั้ง และวาง/ช่องว่างอีกสองช่องหลังจากผ่านไป/กว่าครั้งที่แล้ว

+`¶ ( *).( *).?$
$&¶$1/  $2\

เริ่มต้นที่X, ทำงานลง, วาง/แนวทแยงมุมไปทางซ้ายในแต่ละครั้ง และวาง\ช่องว่างอีกสองช่องหลังจากผ่านไป/กว่าครั้งที่แล้ว

m` (\W)$
$1

จำนวนช่องว่างระหว่างสองเส้นทแยงมุมจะต้องเป็นเลขคี่ดังนั้นช่องว่างสุดท้ายของแต่ละบรรทัด (ยกเว้นXบรรทัดเดิม) จะถูกลบ


2

Mathematica, 131 ไบต์

(F[x_,y_]:=Table[x<>StringJoin@Table[" ",i]<>y,{i,1,#*2,2}];Column[Join[Reverse@F["\\","/"],{"X"},F["/","\\"]],Alignment->Center])&


Mathematica, 104 ไบต์

นี่เป็นอีกวิธีการใช้ Grid

(S=DiagonalMatrix[Table["\\",r=2#+1]];Table[S[[r+1-i,0+i]]="/",{i,r}];S[[#+1,#+1]]="X";Grid@S/. 0->" ")&

2

APL (Dyalog), 25 bytes

Requires ⎕IO←0 which is default on many systems.

' \/X'[(⊢+2×⌽)∘.=⍨⍳1+2×⎕]

Try it online!

' \/'[] index the string with

 get input

 multiply by two

1+ add one

 than many integers

∘.=⍨ equality table (i.e. identity matrix; NW-SE diagonal)

() apply the following tacit function on that

   the argument

  + plus

   two times

   the horizontally mirrored argument (i.e. NE-SW diagonal)


2

Bash, 138 bytes

for i in `seq $1;seq $[$1-1] -1 1`
{ $[a++]
printf "%*c%*s\n" `echo ' '$i $[a>$1?1:2] $[($1-i)*2]' '$[a<$1?1:2]`
}|sed 's/22/X/'|tr 12 /\\

Try it online!

Really long, bash heates '\ and /'

Less golfed

 for i in {1..10} {9..1};{
   $[a++];                      #argument as padding, prints 1 for \ and 2 for /
   printf "%*c%*s\n" `echo ' '$i $[a>$1?1:2] $[($1-i)*2]' '$[a<$1?1:2]`;
  }|sed 's/22/X/g' | tr 12 /\\



1

Perl 5, 110 + 1 = 111 bytes

Uses -n flag.

$x=$_;$,="\n";push@x,$"x($x-$_)."\\".$"x(2*--$_+1)."/"while$_>0;say@x,$"x$x."x";for(reverse@x){y!\\/!/\\!;say}

1

QBIC, 90 bytes

~b=0|?@X`\[0,:-1|X=space$(a)┘Z=Z+X+@\`+space$((b-a)*2-1)+@/`+X+@┘`]Z=Z+space$(b)+A+_fZ

How this monstrosity works, is left as an excercise for the reader...

Sample output:

Command line: 3
\     /
 \   / 
  \ /  
   X
  / \  
 /   \ 
/     \

1

Visual Basic.Net, 454 450 Bytes

Option Strict Off
module m
sub main(a As String())
dim v=Convert.toInt32(a(0))
for i as Integer=v to 1 step -1
for j as Object=1 to v-i
w(" ")
next
w("\")
for j as Object=1 to i*2-1
w(" ")
next
console.writeline("/")
next
console.writeline(new String(" ",v)&"X")
for i as Object=1 to v
for j as Object=1 to v-i
w(" ")
next
w("/")
for j as Object=1 to i*2-1
w(" ")
next
console.writeline("\")
next
end sub
sub w(s)
console.write(s)
end Sub
end module

not sure whether making a func for writeline will save some bytes thanks to Stephen S for pointing at as ... removal also changed integer into object last edit changed the first one back


You're a brave one :) I believe you can remove all of the as Types, because if you have Option Strict Off, VB.NET acts like a loosely typed language.
Stephen

Currently on Linux mono is anoying
polyglotrealIknow

mono doesn't cares about Option Strict, or at least thats what I think
polyglotrealIknow

Oh it seemed functions != for loops thanks for the golf
polyglotrealIknow

Isn't Option Strict off by default? It is in Visual Studio at least
Stephen

1

05AB1E, 22 bytes

F'\IN-úR.∞})Âí'Xs)˜.c»

Try it online!

Explanation

F                        # for N in [0...input-1] do
 '\                      # push a backslash
   IN-ú                  # prepend input-N spaces
       R                 # reverse
        .∞               # mirror
          }              # end loop
           )             # wrap stack in a list
            Â            # bifurcate
             í           # reverse each item
              'Xs        # push an "X" between the 2 lists on the stack
                 )˜      # wrap in flattened list
                   .c    # pad lines to equal length
                     »   # join on newlines

Alternative 22 byte solution

F'\N·>ú'/ì})Âí'X¸«ì.c»


1

tcl, 134

proc P {x s b} {time {puts [format %[incr ::i $x]s%[expr ($::n-$::i)*2+2]s $s $b]} $::n}
P 1 \\ /
puts [format %[incr i]s X]
P -1 / \\

demo

Set n on the first line.

May be I can golf it more using a recursive approach


1

R, 75 72 bytes

y=diag(b<-2*scan()+1);write(c(" ",'\\','/','X')[y+2*y[,b:1]+1],'',b,,'')

Inspired by this answer, generates an implicit matrix and writes it to stdout; reads the size from stdin. It has to build a matrix of space characters and uses sep='' b/c otherwise it has spacing issues.

diag(b)                     # generates a main diagonal of 1, rest 0
2*diag(b)[,b:1]             # the other diagonal is 2
                            # [,b:1] reverses columns
                            # [b:1,] reverses the rows; they're equivalent
diag(b)+2*diag(b)[,b:1]     # sums, so we get 1 for main diagonal
                            # 2 for other diagonal, 3 for center
diag(b)+2*diag(b)[,b:1]+1   # add 1 since R is 1-indexed
                            # the result is indices for the vector
c(' ','\\','/','X')

Try it online!

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