运算符ASCII艺术


22

挑战

从下面的列表中给定一个ASCII运算符,并给它一个数字n,使用该运算符作为字符,画出该运算符的ASCII表示形式,该运算符的线段长度为n

输入项

列表中的ASCII字符= + - x /n其中的整数n >= 1。(我使用x代替*/代替÷,但您可以使用其中任何一个,以较容易的一个为准)。对于+x,您只需要处理奇数即可避免对齐问题。

输出量

由长度为n的字符组成的运算符的ASCII绘图。水平部分的字符之间应有空格,以抵消垂直/水平距离的差异。

规则

这是,因此以字节为单位的最短代码获胜。禁止出现标准漏洞。

例子

输入: + 3

  +
+ + +
  +

输入: = 4

= = = =
= = = =

输入: = 10

= = = = = = = = = =
= = = = = = = = = =

输入: - 2

- -

输入: / 10

         /
        /
       /
      /
     /
    /
   /
  /
 /
/

输入: x 7

x     x
 x   x
  x x
   x
  x x
 x   x
x     x

您可以为添加测试用例= 10吗?
Rod

1
我假设“ x”和“ +”表示奇数?(我刚刚看到DrMcMoylex提出了几乎相同的问题。)
Martin Rosenau

1
@MartinRosenau是的,在“输入”部分:“对于+和x,您只需要处理奇数即可避免对齐问题。”
corvus_192 2016年

为什么X和/不隔开?
亚当

1
允许使用空格吗?
2013年

Answers:


5

62 59 56字节

55个字节的代码,-S标志+1 。

[sXbRA_AEv-_aM,b(Y^aWR_Xb/2s)MyRVsX,b.aYaXbJsxyRL2x]@Aa

请注意,此解决方案可使用÷for的输入进行除法和*乘法,尽管它使用这些字符分别绘制ASCII-art /x。OP已澄清这是可以的。在线尝试!

怎么样?

这是一个 部分隔开和注释的版本。请注意,ab是命令行参数,分别是运算符和大小。该-S标志控制列表的输出方式:它首先在换行符上联接,但在空格上联接任何嵌套列表。

[                 Build a list of all possible figures:
 sXbRA_AEv-_aM,b   0 - Multiplication
 (Y^aWR_Xb/2s)My   1 - Addition
 RVsX,b.a          2 - Division
 YaXbJs            3 - Subtraction
 x                 4 - Empty
 yRL2              5 - Equals
 x                 6 - Empty
] @ Aa            Index, mod 7, with ASCII value of a

以下是各个部分:

乘法

对于图中的每一行,我们生成一串空格,然后用输入字符替换其中的两个。对于row i,我们要替换index ib-1-i; 处的空格。但请注意,后者可以使用负索引-1-i。(它甚至更短,因为变量v被预先初始化到负片v Ë1)

sXbRA_AEv-_aM,b
            M,b  Map this function to range(b):
sXb                Space, repeated b times
     _             Function arg
      AE           (Implicitly) convert to list and append element...
        v-_        -1 minus function arg
   RA              Replace the characters at those indices...
           a       ... with input character
                 The resulting list is output with one item per line

加成

从使用的策略我画一个空心方的答案,我们定义一个封装了一个函数+b/2其参数的副本,并返回结果为字符的列表。(//不需要整数除法,因为字符串重复运算符会X自动将其截断为整数。)首先,我们在空格上调用此函数,给定[" ";" ";"+";" ";" "]; 然后,我们将相同的函数映射到该结果,[" ";" ";"+";" ";" "]在大多数行上给出["+";"+";"+";"+";"+"]在中心线上给出。然后,由于该-S标志,此嵌套列表将在行的所有字符之间以及行之间的换行符之间留有空格。

(Y^aWR_Xb/2s)My
                 Anonymous function:
      _Xb/2        Function arg, repeated b/2 times (implicitly rounded down)
   aWR             Wrap a in two copies of the above
  ^                Split resulting string into list of chars
 Y               Yank that function into y
(          s)    Apply function y to space
             My  Map y to that result

每行在b-1和之间有0空格,后跟输入字符a

RVsX,b.a
    ,b    Range(b)
  sX      Space, repeated that many times (works itemwise)
      .a  Concatenate a (itemwise)
RV        Reverse (puts the larger number of spaces at the beginning)
          Outputs newline-separated

减法

在输入字符处用空格分隔。保存副本以备后用。

YaXbJs
 aXb    b copies of a
    Js  Join on space
Y       Yank into y (overwrites the function from earlier, but we're done using it anyway)
        This is a string, so it just gets output

等于

减法步骤存储了我们所需内容的一半,只需将y其加倍即可。

yRL2  (Implicitly) convert y to list and repeat it twice
      Outputs newline-separated

x值在那里填充主列表,以便模块化索引为中的每个输入字符提供唯一索引+-*÷=


13

V78,72,71,68,65,63,62,61字节

Ç=ü-/Àé X
ç^Ó/é Àä$
ç+/ÀÄM|ÀR+ 
ç=/Ä
ç¯/lòhYpX
çx/rxòl3Äjxlrx

在线尝试!

与往常一样,与05AB1E并驾齐驱真的很有趣!

由于其中包含非ASCII字符,因此这里是一个十六进制转储:

0000000: c73d fc2d 2fc0 e920 580a e75e d32f e920  .=.-/.. X..^./. 
0000010: c0e4 240a e72b 2fc0 c44d 7cc0 522b 200a  ..$..+/..M|.R+ .
0000020: e73d 2fc4 0ae7 af2f 6cf2 6859 7058 0ae7  .=/..../l.hYpX..
0000030: 782f 7278 f26c 33c4 6a78 6c72 78         x/rx.l3.jxlrx

这并不在输出创建前导空格=-,但是这似乎是允许的。如果不允许这样做,请随时发表评论,我会回滚。

说明

“全局命令”(例如ç)将特定的命令集应用于与某个正则表达式匹配的每一行。语法是

ç<compressed regex>/<commands>

这是模拟条件/切换语句的最简单方法。在我的原始答案中,我只是为需要搜索的每个不同字符在右侧创建了整个ASCII艺术。但是,许多这些输出都需要类似的命令。所以我把它们结合在一起。第一个命令('Ç')实际上是全局命令的反函数,它将命令应用于与正则表达式匹配的每一行。所以第一个命令是:

Ç=ü-        " On every line not containing an '=' or an '-' (e.g. inputs '/', '+', and 'x'):
    /Àé     "   Insert *n* spaces
        X   "   Delete one of them

以下命令用于输入“ =”和“-”。这两个很方便且相似。执行完此命令后,我们无需再处理-

ç^Ó         " On every line that starts with non-whitespace (e.g. every line not affected by our previous command):
   /é       "   Insert one space
            "   Move back a character
      À     "   Make *n* copies
       ä$   "   Of every character on this line

从这里开始,我们仅对每个可能的输入执行一些额外的命令。对于+

ç+/         " On every line containing a '+':
   ÀÄ       "   Make *n* copies of this line
     M|     "   Move to the first character of the middle line
       À    "   *n* times:
        R+  "   Replace the next two characters with '+ '

等于的命令非常简单。我们只是用复制它Ä。对于/

ç¯          " On every line containing a '/':
  /l        "   Move one character to the right
    ò       "   Recursively:
     h      "     Move one character to the left
      Yp    "     Make a copy of this line
        X   "     Delete one character
         ò  "   End loop (implicit)

最后一个是最复杂的。从根本上讲,这个答案的端口。

çx              " On every line containing a 'x':
  /rx           "   Replace the first character with an 'x'
     ò          "   Recursively:
      l         "     Move one char to the right
       3Ä       "     Make 3 copies of this line
         j      "     Move down one line
          x     "     Delete one char
           l    "     Move one char to the right
            rx  "     Replace this char with an 'x'

那是多行用的呢?
科纳·奥布赖恩

@Conorobrien是的。该ç命令(以及搜索和替换/以及?)全部模拟vim命令行的一部分,您必须在其中按Enter才能实际运行该命令
DJMcMayhem

13

05AB1E81 76 74 73 70 69 68 65 64 62 60 59 57 56字节

目前正在V战斗。我为您而来McMoylex博士:p。

还在与Pip交战。我会看着你的DLosc先生。


码:

Ç6&"¹s<ú.s.Bívy¹'xQiÂðñ}, ¹×S)»¹'=Qƒ= ;ƒ¹})D¦»»Rû.c"#è.V

或者以更易读的形式:

  Ç6&
"¹s<ú.s.Bívy¹'xQiÂðñ},
 ¹×S)»¹'=Qƒ=
 ;ƒ¹})D¦»»Rû.c"
#è.V

使用CP-1252编码。在线尝试!


1
我们再来一次...:P
DJMcMayhem

1
@DrMcMoylex哈哈哈,美好的过去:)。
阿德南

30
更具可读性...完全...
Oliver Ni

1
对于给定的“可读”定义。
马特·莱西


7

Python 3中,304个 283 278字节

足够简单,只需创建一个字符矩阵,并根据其为单位应用不同的操作。如果还算不错,请在=和处加上-尾随空格。

编辑:感谢@Shebang和@Rod的建议,最终节省了21个字节!

EDIT2:感谢@Artyer节省了5个字节!

t,s=input().split()
s=int(s)
r=range(s)
b=[[' ']*s for x in r]
exec(['for x in r:b[s//2][x]=b[x][s//2]=t','b=[t*s]'+'*2'*(t=='='),'for x in r:b[x][s-x-1]='+'b[x][x]='*(t=='x')+'t'][(t>'+')+(t in'x/')])
if t in'-=+':b=[[x+' 'for x in l]for l in b]
print(*map(''.join,b),sep='\n')

通过删除if'-'==t条件行并将其替换为if t in'=-':b=[[t+' ']*s]*(2*(t>'-'))(我认为),可以节省8个字节。
卡德,2016年

您可以将函数包装在列表中并使用exec:运行,exec(['+ block','/ block','x block','= block','- block']['+/x=-'.find(t)])以节省〜18个字节
Rod

是的,可接受尾随空格/换行符。
Yodle

对于第一行,请执行.split()(无args在空白处拆分)。在第6行,您错过了空格(b=[[x+' 'for)。您可以使最后一行print(*map(''.join,b),sep='\n')少1个字节。
Artyer

7

的JavaScript(ES6),238个 225 215 202 196字节

(c,n)=>[...Array(i=n*(c=="="?4:c+1-1?2:c<"-"?n+n:n+1))].map(_=>--i%(n+(c=='/'|c>'w'||n))?c>'w'?i%n&&~-i%(n+2)?" ":c:c<'-'?i%(n*2)-n&&(~i&1|(n/2^i/n/2))?" ":c:c=="/"?i%n?" ":c:i%2?c:" ":`
`).join``

可以打高尔夫球,但这是一个开始。


6

Scala,275个字节

(i,c)=>if(c<44){val b=(" "*(i-1)+"+\n")*((i-1)/2)
b+"+ "*i+"\n"+b}else
if(c<46)"- "*i else
if(c<48)i-1 to(0,-1)map(" "*_+"/\n")mkString else
if(c<62)"= "*i+"\n"+"= "*i
else{val a=0 to i/2-1 map(x=>" "*x+"x"+" "*((i/2-x)*2-1)+"x"+" "*x+"\n")mkString;a+" "*(i/2)+"x"+a.reverse}

用法:

val f:((Int,Char)=>String)=...
print(f(10, '/'))

说明:

该代码测试char的ascii值,以选择生成图像的正确方法。有问题的运算符的ascii值为: ('+' -> 43), ('-' ->45), ('/' -> 47), ('=' -> 61), ('x' -> 120)

(i,c)=>                              //define a function
  if(c<44){                            //if c is a plus
    val b=(" "*(i-1)+"+\n")*((i-1)/2)    //define the top/bottom part b as (i-1)/2 times (i-1) spaces, a plus sign and a newlineine
    b+"+ "*i+"\n"+b                      //return b, i times a plus and a space, a newline and b
  }else if(c<46)                       //if c is a '-'
    "- "*i                               //return "- " repeated i times
  else if(c<48)                        //if c is a '/'
    i-1 to(0,-1)                         //create a range from i-1 to 0 in steps of -1
    map(" "*_+"/\n")                     //map each number to that number of spaces plus a "/" and a newline
    mkString                             //join them together
  else if(c<62)                        //if c is '='
    "= "*i+"\n"+"= "*i                   //return "= " repeated i times, a newline and "= " repeated i times again
  else{                                //if c if 'x'
    val a=                               //define a, which will be the top part, as...
      0 to i/2-1                         //a range from 0 to i/2-1
      map(n=>                            //map each number n to
        " "*n                              //n spaces
        +"x"                               //plus an "x"
        +" "*((i/2-n)*2-1)                 //plus ((i/2)-n)*2-1 spaces
        +"x"                               //plus an "x"
        +" "*n                             //plus n spaces
        +"\n"                              //and a newline
      )mkString;                         //join them
    a+" "*(i/2)+"x"+a.reverse          //return a, i/2 spaces, "x" and the reverse of a 
  }

5

JavaScript(ES6),156个字节

(c,n)=>[...Array(n--)].map((_,i,a)=>a.map((_,j)=>({'/':a=i+j-n,x:a&&i-j,'-':a=i+i-n,'+':a&&j+j-n,'=':a+2&&a-2}[c]?' ':c)).join(c=='='|c<'/'?' ':'')).join`\n`

其中\n代表文字换行符。


在Firefox 49中,我得到的SyntaxError: invalid property id是当前编写的内容,但是将斜杠周围的反引号更改为撇号可解决该问题。(为什么您要在其中
加上

另外,输出用于+-=比所述挑战要求外观不同:“水平部分应具有字符之间的空间,以抵消垂直/水平距离差”。
ETHproductions 2016年

@ETHproductions a)错字b)对不起,我忽略了,稍后会解决。
尼尔

这太荒谬了。我希望修复它不会增加太多字节。
ETHproductions 2016年

@ETHproductions谢谢。我认为这样做的代价是19个字节。
尼尔

4

Dyalog APL91 86 字节

Needs ⎕IO←0,这是许多系统上的默认设置。将n作为左参数,将+-×÷=中的一个作为右参数。

{s←⌈⍎⍕32
t' '
d←⌽∘.=⍨⍺
s2 6:t[d∨⌽d6=s]
5=s:t[↑,/2↑¨∨/¨(⌊⍺÷2)=⍳⍺ ⍺]
(2-s)(2×⍺)⍴t}

说明

{
    s     3  2              calculate ceil(3 f 2), where f is the given symbol
    t  ' '                     create a string with a space before the symbol
    d   ∘.=⍨                  Boolean \ diagonal
    s  2 6: t[d   d  6 = s]  if ÷ or × index t with one or both diagonals
 find coordinates that are in the middle of at least one dimension
 pad with zeros for spacing
 use that to index into t
    5 = s: t[  ,/ 2↑¨ ∨/¨ (⌊  ÷ 2) =   ⍺]
 - or =:
    (2 - s) (2 × ⍺)  t        one or two rows of double-spaced symbols
}

3

Mathematica,191个字节

e=#~Mod~2==1&;StringRiffle[Normal@SparseArray[{a_,b_}/;(a+b==d+1||a==b)[e@b&&a<3,,e@b&&(a==⌈d/2⌉||b==d),,e@b&&a<2,,a+b==d+1][[Last@ToCharacterCode@#~Mod~10]]:>#,{d=#2,2d-1}," "],"
"," "]&

匿名函数。将字符串和数字作为输入,并返回字符串作为输出。到目前为止还不是最短的,但是写起来仍然很有趣。


3

C,396字节

#define p(x) printf(x);
i,j,k,m;f(char s,int n){i=k=0;if(s==45)for(;i<n;++i)p("- ")m=n/2;if(s==43)for(;i<n;++i)for(j=0;j<=m;++j)if(i-m)p(j-m?"  ":"+\n")else{for(;k<n;++k)p("+ ")p("\n")j+=m;}if(s==61)for(;i<2;++i){for(k=0;k<n;++k)p("= ")p("\n")}j=n;if(s==47)for(;i<n;++i){--j;for(k=0;k<j;++k)p(" ")p("/\n")}if(s==120)for(;i<n;++i){k=m-abs(m-i);for(j=0;j<n-k;++j)p(j-k?" ":"x")p(i-m?"\bx\n":"\n")}}

致电:

int main()
{
   f('x', 5);
   return 0;
}

2

SOML104个 100 字节(非竞争)

    Cd³³b»E +=?ce*d+e{t}bd*Oe{t}} ==?b*tt} -=?b*t} /=?bc*b{j:d+p}} x=?"”cb*e{jj⁴⁴d;d+++tGG;c+;}XOdoe{O

这是种竞争,因为我很确定在此问题发布之前,我在这里使用的所有内容都在github上有文档,但是解析器不支持我以前使用过的某些功能。


2

PHP,306 292 281 282 282 281 275 270字节

$r=str_pad("",2*$n=$argv[2],($c=$argv[1])." ")."\n";if(",">$c)$r=($m=str_repeat(str_pad($c,$n," ",0)."\n",$n/2))."$r$m";if(9<$c)$r.=$r;if(w<$c)for($r=$c;$i<$n;$r[$i*(2+$n)]=$r[++$i*$n-1]=x)$r[$i*$n+$i+$n]="\n";if("/"==$c)for($r=$s="";$i++<$n;$s.=" ")$r="$s/\n$r";echo$r;

哦,这很笨重。需要进一步打高尔夫球。
我可以使用物理换行符保存4个字节,或者通过将“ \ n”放入变量来保存1个字节。


1
好的。对于“ +”,我认为您需要匹配高度而不是始终匹配3。另外,您应该能够更多地使用if()而不是case / break;
Crypto

2

C#,744个字节

我想这大概是一百万个字符,但是我不在乎,我很高兴我解决了这个问题...

打高尔夫球:

string A(string s,int n){string O="";Func<string,int,string>R=(a,b)=>{return string.Join("",Enumerable.Repeat(a,b))+"\r\n";};switch(s){case"+":for(int i=0;i<n;i++){if(i==n/2){O+=R("+",n);}else{O+="+".PadLeft(n-n/2,' ').PadRight(n-n/2,' ')+"\r\n";}}return O;case"=":return R("=",n)+R("=",n);case "-":return R("-",n);case "/":for(int i=n;i>0;i--){O+="/".PadLeft(i)+"\r\n";}return O;case "x":int x=0;string[]r=new string[n];for(int i=n;i>0;i--){if(n-x-x<0){O+="x".PadLeft(x+1)+"\r\n";break;}string row=string.Join("",Enumerable.Repeat(" ",x))+"x"+string.Join("",Enumerable.Repeat(" ",n-x-x))+"x"+"\r\n";O+=row;x++;r[x]=row;if(i==n/2)break;}for(int i=r.Length-1;i>0;i--){if(string.IsNullOrEmpty(r[i]))continue;O+=r[i];}return O;default:return "";}}

取消高尔夫:

public string A(string s, int n)
{
  string O = "";

  Func<string, int, string> R = (a, b) =>
  {
    return string.Join("", Enumerable.Repeat(a, b)) + "\r\n";
  };

  switch (s)
  {
    case "+":
      for (int i = 0; i < n; i++)
      {
        if (i == n / 2)
        {
          O += R("+", n);
        }
        else
        {
          O += "+".PadLeft(n - n / 2, ' ').PadRight(n - n / 2, ' ') + "\r\n";
        }
      }
      return O;
    case "=":
      return R("=", n) + R("=", n);
    case "-":
      return R("-", n);
    case "/":
      for (int i = n; i > 0; i--)
      {
        O += "/".PadLeft(i) + "\r\n";
      }
      return O;
    case "x":
      int x = 0;
      string[] r = new string[n];
      for (int i = n; i > 0; i--)
      {
        if (n - x - x < 0)
        {
          O += "x".PadLeft(x + 1) + "\r\n";
          break;
        }
        string row = string.Join("", Enumerable.Repeat(" ", x))
          + "x"
          + string.Join("", Enumerable.Repeat(" ", n - x - x)) + "x" + "\r\n";
        O += row;
        x++;
        r[x] = row;
        if (i == n / 2)
          break;
      }
      for (int i = r.Length - 1; i > 0; i--)
      {
        if (string.IsNullOrEmpty(r[i]))
          continue;
        O += r[i];
      }
      return O;
    default:
      return "";
  }
}

测试:

+: 3, 5, 7, 9, 11
/: 7, 8, 9, 10
-: 3, 4, 5, 6
=: 3, 4, 5, 6, 7
x: 5, 7, 9, 11

在这里粘贴和格式化太多了,我创建了一个pastebin:

Pastebin


请打高尔夫球,并提供字节数。
mbomb007 '16

2

C,331字节

i,j;f(o,n){if(47==o)for(i=n;i;puts("")){for(j=i--;j--;putchar(j?32:o)){}}
if(43==o)for(i=n;i--;puts("")){for(j=n;j--;printf(i==n/2||!j?"+ ":" ")){}}
if(45==o)for(i=n;i--;putchar(o)){}
if(61==o)for(i=3;i--;puts("")){for(j=n;j--;putchar(i&1?32:o)){}}
if(120==o)for(i=n;i;puts("")){for(j=0;j++<n;putchar(j==i||j==n-i+1?o:32)){}i--;}}

将运算符作为ASCII代码传递到o,并将字符计数传递给n。我只在水平连续字符之间加了一个空格到加号中,因为如果我不这样做的话,这是唯一会导致输出失真的字符,在任务中它只会说“应该”。我使用两个嵌套循环递减计数(除非-我只需要一行)。

= 三行,其中一条空着,直截了当

+ 使用 printf,因为空间

- 直截了当

/ 将内循环打印为零,然后从外循环的计数器开始

x 在外部循环的计数器及其“逆”处打印内部循环 n-i。仍然需要看看为什么我在这里一人离异。

样品电话:

#include <stdio.h>
/*  =       61
    +       43
    -       45
    /       47
    Space   32
    x       120
*/
int main(int argc, char **argv){
    printf("%s\n%s\n",argv[1], argv[2]);
    f(*argv[1],strtol(argv[2],NULL,10));
}

1

Lua中,402 344 312字节

312:

r,p,b,x=string.rep,print,' ','x'function d(s,n)h,l=(n+1)/2,s..b;e=r(l,n)if s=='-'then p(e)elseif s=='='then p(e)p(e)else for f=1,n do p(s=='/'and(r(b,n-f)..s)or s=='+'and(f~=h and r(' ',n-1)..'+'or r('+ ',n))or f<h and r(b,f-1)..x..r(b,n-2*f)..x or f>h and r(b,n-f)..x..r(b,2*f-2-n)..x or r(b,f-1)..x)end end end

344:

r,p,b,x=string.rep,print,' ','x'function d(s,n)h,l=(n+1)/2,s..b;e=r(l,n)if s=='-'then p(e)elseif s=='='then p(e)p(e)else for f=1,n do if s=='/'then p(r(b,n-f)..s)elseif s=='+'then p(f~=h and r(' ',n-1)..'+'or r('+ ',n))elseif s=='x'then p(f<h and r(b,f-1)..x..r(b,n-2*f)..x or f>h and r(b,n-f)..x..r(b,2*f-2-n)..x or r(b,f-1)..x)end end end end

402:

r,p,b,x=string.rep,print,' ','x'function d(s,n)h=(n+1)/2;if s=='-'then p(r(s..b,n))end;if s=='='then p(r(s..b,n))p(r(s..b,n))end;if s=='/'then for i=1,n do p(r(b,n-i)..s)end end;if s=='+'then for i=1,n do p(i~=h and r(' ',n-1)..'+'or r('+ ',n))end end;if s=='x'then for i=1,n do if i<h then p(r(b,i-1)..x..r(b,n-2*i)..x)elseif i>h then p(r(b,n-i)..x..r(b,-n+2*i-2)..x)else p(r(b,i-1)..x)end end end end

减少了90个字符,即使展开也很难看。:|


“看来这也是一个古老的挑战。糟糕!” 回答古老的挑战没有错。
Steadybox
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.