ASCII 사각형 그리기


20

배열에 두 개의 정수가 입력되면 첫 번째 정수를 너비로, 두 번째 정수를 높이로 사용하여 사각형을 그립니다.

또는 언어에서 지원하는 경우 두 정수를 별도의 입력으로 제공 할 수 있습니다.

너비와 높이가 3보다 작지 않으며 항상 주어질 것이라고 가정하십시오.

출력 예 :

[3, 3]

|-|
| |
|-|

[5, 8]

|---|
|   |
|   |
|   |
|   |
|   |
|   |
|---|

[10, 3]

|--------|
|        |
|--------|

이것은 코드 골프이므로 가장 적은 바이트 수의 응답이 이깁니다.

답변:



10

젤리 , 14 바이트

,þ%,ỊḄị“-|| ”Y

온라인으로 사용해보십시오! 또는 모든 테스트 사례를 확인 .

작동 원리

,þ%,ỊḄị“-|| ”Y  Main link. Left argument: w. Right argument: h

,þ              Pair table; yield a 2D array of all pairs [i, j] such that
                1 ≤ i ≤ w and 1 ≤ j ≤ h.
   ,            Pair; yield [w, h].
  %             Take the remainder of the element-wise division of each [i, j]
                by [w, h]. This replaces the highest coordinates with zeroes.
    Ị           Insignificant; map 0 and 1 to 1, all other coordinates to 0.
     Ḅ          Unbinary; convert each pair from base 2 to integer.
                  [0, 0] -> 0 (area)
                  [0, 1] -> 1 (top or bottom edge)
                  [1, 0] -> 2 (left or right edge)
                  [1, 1] -> 3 (vertex)
       “-|| ”   Yield that string. Indices are 1-based and modular in Jelly, so the
                indices of the characters in this string are 1, 2, 3, and 0.
      ị         At-index; replace the integers by the correspoding characters.
             Y  Join, separating by linefeeds.

이것은 훌륭한 사용입니다 :)
Lynn

9

MATLAB, 69 65 56 바이트

바이트에 대해 @WeeingIfFirst와 @LuisMendo에게 감사드립니다 =)

function z=f(a,b);z(b,a)=' ';z([1,b],:)=45;z(:,[1,a])='|'

이것은 Matlab에서 정말 간단합니다. 먼저 원하는 크기의 행렬을 만든 다음을 삽입하기 위해 첫 번째와 마지막 행을 인덱싱하고 삽입 할 -첫 번째와 마지막 열과 동일하게 수행하십시오 |.

예를 들어 f(4,3)반환

|--|
|  |
|--|

@WeeingIfFirst 아, 물론, 대단히 감사합니다!
flawr

6 바이트 더 짧음 :z([1,b],1:a)=45;z(1:b,[1,a])=124;z=[z,'']
Stewie Griffin

더 짧은 :z(b,a)=' ';z([1,b],:)=45;z(:,[1,a])=124
Luis Mendo

@LuisMendo 감사합니다! 우리는 여전히 문자열 인성이 필요합니다. 그렇지 않으면 배열이 숫자로 변환됩니다.
flawr

@flawr z(b,a)=' '은 char로 초기화됩니다. 그 후에 숫자를 채울 수 있으며 자동으로 문자로 캐스트됩니다. z원래 유형 유지
Luis Mendo

8

자바 스크립트 (ES6), 63 바이트

f=
(w,h,g=c=>`|${c[0].repeat(w-2)}|
`)=>g`-`+g` `.repeat(h-2)+g`-`
;
<div oninput=o.textContent=f(w.value,h.value)><input id=w type=number min=3 value=3><input id=h type=number min=3 value=3><pre id=o>


템플릿 함수를 기본 인수로 전달 하시겠습니까? 영리한!
Florrie

8

하스켈, 62 55 바이트

f[a,b]n=a:(b<$[3..n])++[a]
g i=unlines.f[f"|-"i,f"| "i]

사용 예 :

*Main> putStr $ g 10 3
|--------|
|        |
|--------|

helper 함수 f는 두 개의 요소 목록 [a,b]과 숫자 n를 가져오고 하나 a뒤에 n-2 bs 뒤에 하나의 목록을 리턴합니다 a. 우리는 fthrice :를 사용하여 상단 / 하단 라인 : f "|-" i, 중간 라인 : f "| " i및 그 둘로부터 전체 직사각형을 만들 수 있습니다 :f [<top>,<middle>] j (주 : j매개 변수와 같이 표시되지 않습니다g i 부분 적용 인해 ).

편집 : @dianne은 두 개의 Char인수를 String길이 2 중 하나로 결합하여 바이트를 절약했습니다 . 대단히 감사합니다!


나는 그 #아이디어를 좋아한다 !
flawr

2
나는 당신이 정의 (a:b)#n=a:([3..n]>>b)++[a]하고 기록 함으로써 약간의 바이트를 절약 할 수 있다고 생각한다["|-"#i,"| "#i]#j
dianne

@dianne : 매우 영리합니다. 고마워요!
nimi

8

파이썬 2, 61 58 바이트

@flornquake 덕분에 -3 바이트 (불필요한 괄호 제거 h, 카운터로 사용 )

def f(w,h):exec"print'|'+'- '[1<h<%d]*(w-2)+'|';h-=1;"%h*h

테스트 사례는 아이디어입니다


('- '[1<i<h])괄호가 필요하지 않습니다.
flornquake

h를 카운터로 사용하여 다른 바이트를 저장하십시오.exec"print'|'+'- '[1<h<%d]*(w-2)+'|';h-=1;"%h*h
flornquake

@flornquake 나는 그 괄호의 필요성을 확인하려고했지만 잊어 버렸습니다. h카운터로 사용 하는 것이 현명합니다! 감사.
Jonathan Allan

8

PHP, 74 바이트

for(;$i<$n=$argv[2];)echo str_pad("|",$argv[1]-1,"- "[$i++&&$n-$i])."|\n";

1
실제 줄 바꿈으로 1 바이트를 이길 수 있습니다.
Titus

1
-2 바이트 !$i|$n==++$i대신!$i|$n-1==$i++
Titus

1
다른 바이트$i++&&$n-$i?" ":"-"
Titus

1
$i++&&$n-$i?" ":"-"-> "- "[$i++&&$n-$i](-2)
디도

7

Vimscript, 93 83 75 74 73 66 64 63 바이트

암호

fu A(...)
exe "norm ".a:1."i|\ehv0lr-YpPgvr dd".a:2."p2dd"
endf

:call A(3,3)

설명

fun A(...)    " a function with unspecified params (a:1 and a:2)
exe           " exe(cute) command - to use the parameters we must concatenate :(
norm          " run in (norm) al mode
#i|           " insert # vertical bars
\e            " return (`\<Esc>`) to normal mode
hv0l          " move left, enter visual mode, go to the beginning of the line,  move right (selects inner `|`s)
r-            " (r)eplace the visual selection by `-`s
YpP           " (Y) ank the resulting line, and paste them twice
gv            " re-select the previous visual selection
r<Space>      " replace by spaces
dd            " Cut the line
#p            " Paste # times (all inner rows) 
2dd           " Remove extra lines

사용하지 않으므로 norm!vim 사용자 정의 맵핑을 방해 할 수 있습니다!


5

MATL , 19 바이트

'|-| '2:"iqWQB]E!+)

온라인으로 사용해보십시오!

설명

이 접근법은 이 다른 답변 에서 사용 된 것과 비슷합니다 . 코드는 다음과 같은 형식의 숫자 형 배열을 만듭니다.

3 2 2 2 3
1 0 0 0 1
1 0 0 0 1
1 0 0 0 1
1 0 0 0 1
1 0 0 0 1
1 0 0 0 1
3 2 2 2 3

그리고 그 값은 '|-| '원하는 결과를 산출하기 위해 문자열 에 (1 기반, 모듈 식) 인덱스로 사용됩니다 .

'|-| '                % Push this string
      2:"     ]       % Do this twice
         i            % Take input
          q           % Subtract 1
           W          % 2 raised to that
            Q         % Add 1
             B        % Convert to binary
               E      % Multiply by 2
                !     % Transpose
                 +    % Add with broadcast
                  )   % Index (modular, 1-based) into the string

5

05AB1E , 23 22 20 바이트

높이로 입력 한 다음 너비로 입력합니다.

F„ -N_N¹<Q~è²Í×'|.ø,

설명

F                          # height number of times do
    N_                     # current row == first row
          ~                # OR
      N¹<Q                 # current row == last row
 „ -       è               # use this to index into " -"
            ²Í×            # repeat this char width-2 times
               '|          # push a pipe
                 .ø        # surround the repeated string with the pipe
                   ,       # print with newline

온라인으로 사용해보십시오!

Adnan 덕분에 2 바이트 절약


if-else 문 대신 하위 문자열을 사용하면 2 바이트가 절약됩니다 F„ -N_N¹<Q~è²Í×'|.ø,.
Adnan

5

C, 73 바이트

i;f(w,h){for(i=++w*h;i--;)putchar(i%w?~-i%w%~-~-w?i/w%~-h?32:45:124:10);}

4

파이썬 2, 56 바이트

w,h=input()
for c in'-%*c'%(h-1,45):print'|'+c*(w-2)+'|'

flornquake는 1 바이트를 절약했습니다.


1
문자열 형식을 잘 사용합니다! %c변환을 사용하여 바이트를 저장할 수 있습니다 .'-%*c'%(h-1,45)
flornquake

아, 나는 생각 %*c조차하지 않았다! 고맙습니다. :)
Lynn

'-%%%dc'%~-h%45같은 길이로 작동합니다.
xnor

4

공통 리스프, 104 바이트

골프 :

(defun a(w h)(flet((f(c)(format t"|~v@{~A~:*~}|~%"(- w 2)c)))(f"-")(loop repeat(- h 2)do(f" "))(f"-")))

언 골프 드 :

(defun a (w h)
  (flet ((f (c) (format t "|~v@{~A~:*~}|~%" (- w 2) c)))
    (f "-")
    (loop repeat (- h 2) do
     (f " "))
    (f "-")))

3

Turtlèd , 40 바이트

통역은 없습니다 약간 더 이상 도청

?;,u[*'|u]'|?@-[*:l'|l[|,l]d@ ],ur[|'-r]

설명

?                            - input integer into register
 ;                           - move down by the contents of register
  ,                          - write the char variable, default *
   u                         - move up
    [*   ]                   - while current cell is not *
      '|                     - write |
        u                    - move up
          '|                 - write | again
            ?                - input other integer into register
             @-              - set char variable to -
               [*             ] - while current char is not *
                 :l'|l          - move right by amount in register, move left, write |, move left again
                      [|,l]     - while current cell is not |, write char variable, move left
                           d@   - move down, set char variable to space (this means all but first iteration of loop writes space)
                               ,ur   -write char variable, move up, right
                                  [|   ] -while current char is not |
                                    '-r - write -, move right

3

Mathematica, 67 64 바이트

골퍼들이 몰래 빠져 나와 3 바이트를 절약해야한다는 것을 상기시켜 준 lastresort와 TuukkaX에게 감사드립니다!

간단한 구현. 문자열 배열을 반환합니다.

Table[Which[j<2||j==#,"|",i<2||i==#2,"-",0<1," "],{i,#2},{j,#}]&

1
0<1대신에 사용True
u54112

1
나는이 생각 j==1을 감소시킬 수있다 j<1, 그리고 i==1i<1.
Yytsi

3

파이썬 3, 104 95 바이트

(@ mbomb007의 피드백 : -9 바이트)

def d(x,y):return'\n'.join(('|'+('-'*(x-2)if n<1or n==~-y else' '*(x-2))+'|')for n in range(y))

(내 첫 번째 코드 골프, 피드백 감사)


환영! 공백 중 일부를 제거하고 range(y)대신 대신 사용할 수 있으며 음수가 아닌 range(0,y)경우 n다음을 사용할 수 있습니다.if n<1or n==~-y else
mbomb007

참고 항목 파이썬 팁 페이지
mbomb007

@ mbomb007 감사합니다! 확인해 볼게요
Biarity

2

배치, 128 바이트

@set s=
@for /l %%i in (3,1,%1)do @call set s=-%%s%%
@echo ^|%s%^|
@for /l %%i in (3,1,%2)do @echo ^|%s:-= %^|
@echo ^|%s%^|

너비와 높이를 명령 줄 매개 변수로 사용합니다.


2

Haxe, 112 106 바이트

function R(w,h){for(l in 0...h){var s="";for(i in 0...w)s+=i<1||i==w-1?'|':l<1||l==h-1?'-':' ';trace(s);}}

테스트 케이스

R(5, 8)
|---|
|   |
|   |
|   |
|   |
|   |
|   |
|---|

R(10, 3)
|---------|
|         |
|---------|

2

자바 135 바이트

public String rect(int x, int y){
String o="";
for(int i=-1;++i<y;){
o+="|";
for(int j=2;++j<x)
if(i<1||i==y-1)
o+="-";
else
o+=" ";
o+="|\n";
}
return o;
}

골프 :

String r(int x,int y){String o="";for(int i=-1;++i<y;){o+="|";for(int j=2;++j<x;)if(i<1||i==y-1)o+="-";else o+=" ";o+="|\n";}return o;}

I count 136 :) You can also save a char by removing the space after the first comma.
Christian Rondeau

1
First of all, this code doesn't compile. Even if this would compile, it wouldn't 'draw' a rectangle as the OP currently wants. -1.
Yytsi

@TuukkaX I fixed that newline problem, but I don't see any reason why it should not compile. Of course you have to put that code in a class, but then it should work.
Roman Gräf

1
"I don't see any reason why it should not compile". What's this then: o+=x "|\n"? Did you mean to put an + there?
Yytsi

Thanks. I didn't wanted to place any characters there.
Roman Gräf

2

PowerShell v3+, 55 bytes

param($a,$b)1..$b|%{"|$((' ','-')[$_-in1,$b]*($a-2))|"}

Takes input $a and $b. Loops from 1 to $b. Each iteration, we construct a single string. The middle is selected from an array of two single-length strings, then string-multiplied by $a-2, while it's surrounded by pipes. The resulting strings are left on the pipeline, and output via implicit Write-Output happens on program completion, with default newline separator.

Alternatively, also at 55 bytes

param($a,$b)1..$b|%{"|$((''+' -'[$_-in1,$b])*($a-2))|"}

This one came about because I was trying to golf the array selection in the middle by using a string instead. However, since [char] times [int] isn't defined, we lose out on the savings by needing to cast as a string with parens and ''+.

Both versions require v3 or newer for the -in operator.

Examples

PS C:\Tools\Scripts\golfing> .\draw-an-ascii-rectangle.ps1 10 3
|--------|
|        |
|--------|

PS C:\Tools\Scripts\golfing> .\draw-an-ascii-rectangle.ps1 7 6
|-----|
|     |
|     |
|     |
|     |
|-----|

2

PHP, 82 bytes

list(,$w,$h)=$argv;for($p=$h--*$w;$p;)echo$p--%$w?$p%$w?$p/$w%$h?" ":"-":"|
":"|";

indexing a static string including the newline

list(,$w,$h)=$argv;         // import arguments
for($p=$h--*++$w;$p;)       // loop $p through all positions counting backwards
    // decrease $h and increase $w to avoid parens in ternary conditions
    echo" -|\n"[
        $p--%$w             // not (last+1 column -> 3 -> "\n")
        ?   $p%$w%($w-2)    // not (first or last row -> 2 -> "|")
            ?+!($p/$w%$h)   // 0 -> space for not (first or last row -> 1 -> "-")
            :2
        :3
    ];

Dear downvoter: why?
Titus

1
It could be because a user saw that your answer was flagged as low quality in the review queue. If you post an explanation of your code, or anything more than a one-liner, you can avoid it being automatically flagged.
mbomb007

@mbomb: I have never seen anyone post a description for a oneliner in a non-eso language.
Titus

Or output, or a non-golfed version. It doesn't matter as long as the content is not too short. But you probably haven't been around long if you haven't seen that. Some Python one-liners can be pretty complicated. Look at some of @xnor's.
mbomb007

2

Ruby, 59 54 52 bytes

Oh, that's a lot simpler :)

->x,y{y.times{|i|puts"|#{(-~i%y<2??-:' ')*(x-2)}|"}}

Test run at ideone


1
You can save a couple bytes by using a literal newlines instead of \n.
Jordan

1
You can save bytes by not defining i and j. Replace i's definition with x-=2. Instead of j, just use (y-2).
m-chrzan

Yeah, thanks :)
daniero

2

Perl, 48 bytes

Includes +1 for -n

Give sizes as 2 lines on STDIN

perl -nE 'say"|".$_ x($`-2)."|"for"-",($")x(<>-1-/$/),"-"'
3
8
^D

Just the code:

say"|".$_ x($`-2)."|"for"-",($")x(<>-1-/$/),"-"

Nice one, as always. Note that you've got a backtick at the end of the line while you probably wanted to write a single quote ;-)
Dada

@Dada Fixed. Thanks.
Ton Hospel

2

Lua, 120 93 bytes

Saved quite a few bytes by removing stupid over complexities.

function(w,h)function g(s)return'|'..s:rep(w-2)..'|\n'end b=g'-'print(b..g' ':rep(h-2)..b)end

Ungolfed:

function(w,h)                           -- Define Anonymous Function
    function g(s)                       -- Define 'Row Creation' function. We use this twice, so it's less bytes to function it.
        return'|'..s:rep(w-2)..'|\n'    -- Sides, Surrounding the chosen filler character (' ' or '-'), followed by a newline
    end
    b=g'-'                              -- Assign the top and bottom rows to the g of '-', which gives '|---------|', or similar.
    print(b..g' ':rep(h-2)..b)          -- top, g of ' ', repeated height - 2 times, bottom. Print.
end

Try it on Repl.it


1

Python 2, 67 bytes

def f(a,b):c="|"+"-"*(a-2)+"|\n";print c+c.replace("-"," ")*(b-2)+c

Examples

f(3,3)

|-|
| |
|-|

f(5,8)

|---|
|   |
|   |
|   |
|   |
|   |
|   |
|---|

f(10,3)

|--------|
|        |
|--------|

1

MATL, 21 17 bytes

Z"45ILJhY('|'5MZ(

This is a slightly different approach than the one of the MATL-God.

Z"                   Make a matrix of spaces of the given size
  45ILJhY(           Fill first and last row with '-' (code 45)
          '|'5MZ(    Fill first and last column with '|' (using the automatic clipboard entry 5M to get ILJh back)

Thanks @LuisMendo for all the help!

Try it Online!


1

PHP 4.1, 76 bytes

<?$R=str_repeat;echo$l="|{$R('-',$w=$W-2)}|
",$R("|{$R(' ',$w)}|
",$H-2),$l;

This assumes you have the default php.ini settings for this version, including short_open_tag and register_globals enabled.

This requires access through a web server (e.g.: Apache), passing the values over session/cookie/POST/GET variables.
The key W controls the width and the key H controls the height.
For example: http://localhost/file.php?W=3&H=5


@Titus You should read the link. Quoting: "As of PHP 4.2.0, this directive defaults to off".
Ismael Miguel

Ouch sorry I take everything back. You have the version in your title. I should read more carefully.
Titus

@Titus That's alright, don't worry. Sorry for being harsh on you.
Ismael Miguel

Nevermind; that´s the price I pay for being pedantic. :D
Titus

@Titus Don't worry about it. Just so you know, around half of my answers are written in PHP 4.1. It saves tons of bytes with input
Ismael Miguel

1

Python 3, 74 chars

p="|"
def r(w,h):m=w-2;b=p+"-"*m+p;return b+"\n"+(p+m*" "+p+"\n")*(h-2)+b

1

Swift(2.2) 190 bytes

let v = {(c:String,n:Int) -> String in var s = "";for _ in 1...n {s += c};return s;};_ = {var s = "|"+v("-",$0-2)+"|\n" + v("|"+v(" ",$0-2)+"|\n",$1-2) + "|"+v("-",$0-2)+"|";print(s);}(10,5)

I think Swift 3 could golf this a lot more but I don't feel like downloading Swift 3.


1

F#, 131 bytes

let d x y=
 let q = String.replicate (x-2)
 [for r in [1..y] do printfn "%s%s%s" "|" (if r=y||r=1 then(q "-")else(q " ")) "|"]
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.