走话!


33

以我的拙见,标准文本很无聊。因此,我提出了一个新的写作标准,走路的话!

走路的话

步行词是会响应某些字符的词。出于此挑战的目的,触发字符[u, d, r, l]来自up down right left

在打印文本时,只要遇到这样的字符,都将移动文本的方向。
例如,该文本abcdef将导致:

abcd
   e
   f

规则

  • 大写UDRL和小写udrl都应更改方向,但应在输出中保留大小写
  • 输入将仅包含可打印字符(0-9, A-Z, a-z, !@#%^&*() etc...),没有换行符!
  • 每当文本发生冲突时,它将覆盖该位置的旧字符
  • 输出应该以任何时髦的方式呈现给用户,但它应该是单个输出(无行阵列)
  • 允许尾随换行符
  • 允许尾随空格
  • 适用标准漏洞

测试用例

empty input => empty output or a newline

u =>
u

abc =>
abc

abcd =>
abcd

abcde =>
abcd
   e

abcdde =>
abcd
   d
   e

codegolf and programming puzzles =>
   cod
     e
     g
     o
dna fl    sel
            z
p           z
rogramming pu

ABCDELFUGHI =>
 I
AHCD
 G E
 UFL

It is in my humble opinion that standard text is boring. Therefore I propose a new writing standard, walking words! =>
dnats taht noinipo el
a                   b
rd                  m
       It is in my hu
 t
 e
 x
 t

 i
 s

 b
 o
 ring. Therefore I propose a new writing stand
                                             a
                                             rd
                                              ,

                                              w
                                              a
                                      rdw gnikl
                                       s
                                       !

这是,最短的代码以字节为单位!


4
这种格式有严重的数据丢失问题...:p
Mukul Kumar

是否允许前导/尾随空格?
Arnauld

@Arnauld,只要它们不打扰字符的位置即可。因此,最有可能的只是尾部的空格
Bassdrop Cumberwubwubwub

1
该单词的输出golf本身如何看待?
gabe3886 '16

2
@ gabe3886gfl
Bassdrop Cumberwubwubwub

Answers:


4

木炭29 27 20 19字节

FS«F№rdlu↧ι≔ιω✳∨ωrι

在线尝试!链接是详细版本的代码。说明:

FS«

循环输入字符。

F№rdlu↧ι

如果当前字母是一个方向...

≔ιω

然后更新当前的步行方向。

✳∨ωrι

在当前的步行方向上打印字符,如果尚未设置方向,则默认为右。


1
@Veskah 应该是一个。对于那个很抱歉。
尼尔

7

Dyalog APL,63 字节

s@(n+11 9∘○¨+\0j1*⊃¨,⍨\(8∘≠⍴¨⊢)0,'rdluRDLU'⍳¯1↓s)⍴∘'',⍨2×n←≢s←⍞

⎕IO←0v16(@)中的用途和功能

n←≢s←⍞原始输入s及其长度n

⍴∘'',⍨2×n 创建一个2n x 2n的空间矩阵

s@(...)s指定的(对)索引处的字符修改矩阵

如何计算指标:

¯1↓s 删除的最后一个字符 s

'rdluRDLU'⍳'编码'r'为0、1 'd',等等;其他字符为8

0, 前置0

(8∘≠⍴¨⊢) 将每8个变成一个空列表,所有其他都变成1个元素列表

,⍨\累积交换串联(abcd-> a ba cba dcba

⊃¨ 首先从每个

0j1* 虚常数i的幂

+\ 累计金额

11 9∘○¨每个部分的真实和虚构部分;得到范围内的坐标-n...n

n+ 将它们放在大矩阵上


3

Pyth,68 65字节

KUJ,00ImXH~+VJ=@as_BM_MBU2Kx"rdlu"rd0dzjcsm.x@Hd;*Fm=Z}hdedSMCHlZ

测试套件

它使用由一对坐标索引的字典,该字典在读取输入时进行更新,然后在末尾打印。它还使用了许多聪明的高尔夫技巧。

这是我写的方式,-m在运行之前使用解释器的标志去除空格和注释:

KUJ,00                 ; Initialize J to [0, 0] and K to [0, 1].
                       ; J is the current location, K is the current direction.
I                      ; If the following is truthy, which will be when the input
                       ; is nonempty,
  m                    ; Map d over z, the input.
  XH                   ; Assign to H (a hash table, initially empty)
    ~+VJ               ; At location J, then update J by adding elementwise
      =@               ; K (Next variable is implicit), which is set to
        as_BM_MBU2K    ; [0, 1], bifurcated on mapped negation, then mapped on
                       ; reversal bifuraction with the old value of K appended.
                       ; e.g. [[0, 1], [1, 0], [0, -1], [-1, 0], K]
        x"rdlu"rd0     ; indexed at location equal to the index of the lowercase
                       ; of the current character into "rdlu", -1 if missing.
    d                  ; Insert the current character with that key.
  z                    ; map over z.
jc                     ; Join on newlines the result of chopping into a rectangle
  sm                   ; the concatenation of the map
    .x@Hd;             ; Lookup the character at the given location,
                       ; if none then ' '
    *Fm                ; Locations are the cartesian product of the map
      =Z}hded          ; Inclusive range from the head of each list to 
                       ; the end of each list
                       ; Saved in Z for later
      SMCH             ; Transpose the list of keys, and sort the x and y values
                       ; separately.
  lZ                   ; Width of the rectangle should equal the number of
                       ; x values, which is the length of the last entry.

3

C#,525个 474字节

编辑:感谢@steenbergh,节省了51个字节

它不漂亮,但确实可以工作...

打高尔夫球:

string W(string s){var l=s.Length;var a=new char[2*l+1,2*l+1];int x=2*l/2;int y=2*l/2;int d=0;for(int i=0;i<l;i++){switch(char.ToUpper(s[i])){case'U':d=3;break;case'D':d=1;break;case'L':d=2;break;case'R':d=0;break;}a[y,x]=s[i];switch(d){case 0:x+=1;break;case 1:y+=1;break;case 2:x-=1;break;case 3:y-=1;break;}}string o="";for(int i=0;i<2*l+1;i++){string t="";for(int j=0;j<2*l+1;j++)t+=a[i,j]+"";o+=t==string.Join("",Enumerable.Repeat('\0',2*l+1))?"":(t+"\r\n");}return o;}

取消高尔夫:

public string W(string s)
{
  var l = s.Length;
  var a = new char[2 * l + 1, 2 * l + 1];
  int x = 2 * l / 2;
  int y = 2 * l / 2;
  int d = 0;
  for (int i = 0; i < l; i++)
  {
    switch (char.ToUpper(s[i]))
    {
      case 'U':
        d = 3;
        break;
      case 'D':
        d = 1;
        break;
      case 'L':
        d = 2;
        break;
      case 'R':
        d = 0;
        break;
    }
    a[y, x] = s[i];
    switch (d)
    {
      case 0:
        x += 1;
        break;
      case 1:
        y += 1;
        break;
      case 2:
        x -= 1;
        break;
      case 3:
        y -= 1;
        break;
    }
  }
  string o = "";
  for (int i = 0; i < 2 * l + 1; i++)
  {
    string t = "";
    for (int j = 0; j < 2 * l + 1; j++)
      t += a[i, j] + "";
    o += t == string.Join("", Enumerable.Repeat('\0', 2 * l + 1)) ? "" : (t + "\r\n");
  }
  return o;
}

说明:

使用二维数组,并使用该d值在校正方向上递增数组的位置,其中d值为:

0 => RIGHT
1 => DOWN
2 => LEFT
3 => UP

测试:

var walkTheWords = new WalkTheWords();
Console.WriteLine(walkTheWords.W("codegolf and programming puzzles"));

                            cod                              
                              e                              
                              g                              
                              o                              
                         dna fl    sel                       
                                     z                       
                         p           z                       
                         rogramming pu  

您可以完全删除第二个开关。在编写的第一个开关中d=0;,将该语句替换为第二个switch case 0:语句中的语句,并且与其他情况类似,您可能不需要第二个开关。最后删除此语句a[y,x]=s[i]并将其写在顶部第一开关。
Mukul Kumar

@MukulKumar好主意,我无法正常工作。我最初尝试通过一个开关来实现。必须保持当前的双开关配置!:)
皮特·雅顿

您是a[y,x]=s[i]在第一次切换之前写的吗?
Mukul Kumar

2
您可以使用switch(s[i].toLowerCase())(或等价的c#...),然后删除所有大写字母。应该保存一些字节。
steenbergh

1
@steenbergh谢谢,节省了很多!不,您不能直接ToUpper()因为它char不是一个string。的选择要么是s[i].ToString().ToUpper()还是char.ToUpper(s[i])-我觉得char一个是略短。干杯:)
皮特·阿登

3

的JavaScript(ES6),218 220 232

编辑我正在使用ut跟踪最顶部和最左侧的位置,但是我意识到t根本不需要

w=>[...w].map(c=>u=(((g[y]=g[y]||[])[x]=c,n=parseInt(c,36)|0)-21&&n-27?a=n-13?n-30?a:!(b=-1):!(b=1):(b=0,a=n/3-8),y+=b,x+=a)<u?x:u,a=1,b=0,x=y=u=w.length,g=[])+g.map(r=>[...r.slice(u)].map(c=>z+=c||' ',z+=`
`),z='')&&z

少打高尔夫球

w=>{
  a = 1, b = 0;
  x = y = u = w.length;
  g = [];
  [...w].map(c => (
    r = g[y]||[],
    r[x] = c,
    g[y] = r,
    n = parseInt(c,36)|0,
    n-21 && n-27 ? n-13 && n-30?0 : (a=0, b=n-13?-1:1) : (b=0, a=n/3-8),
    x += a, u = x<u? x : u,
    y += b
  ))
  z=''
  g.map(r=>[...r.slice(u)].map(c=>z += c||' ', z += '\n'))
  return z
}             

测试

F=
w=>[...w].map(c=>u=(((g[y]=g[y]||[])[x]=c,n=parseInt(c,36)|0)-21&&n-27?a=n-13?n-30?a:!(b=-1):!(b=1):(b=0,a=n/3-8),y+=b,x+=a)<u?x:u,a=1,b=0,x=y=u=w.length,g=[])+g.map(r=>[...r.slice(u)].map(c=>z+=c||' ',z+=`
`),z='')&&z

function update() {
  w=I.value
  O.textContent=F(w)
}

update()
#I {width:90%}
<input id=I value='It is in my humble opinion that standard text is boring. Therefore I propose a new writing standard, walking words!' oninput='update()'>
<pre id=O></pre>


3

05AB1E27 26 25 23 22字节

多亏了Grimy,节省了3个字节

ā¤‹>Šε’uχ’slkDÈiV}Y}Λ

在线尝试!

说明

ā                        # push [1 ... len(input)]
 ¤‹                      # check each number if its less than the max
   >                     # increment
                         # results in a list as long as the input where each number is 2 
                         # apart from the last one, this is the lengths to draw
    Š                    # move 2 copies of the input to the top of the stack
                         # the first one is the string to draw
     ε              }    # for each char in the second copy
      ’uχ’slk           # get the chars index in "ubridal"
              D          # duplicate
               Èi }      # if the index is even
                 V       # store it in Y
                   Y     # push Y (initially 2)
                         # this gives us the list of directions
                     Λ   # draw everything on the canvas

1
“ bridal”是一个词典词。-1。编辑:使-2

@Grimy:我想知道字典是否可以在这里使用,但这真的很聪明!
艾米娜(Emigna)


2

Javascript,4̶6̶6̶, 455,433字节

编辑:由于用户1000000000,节省了11个字节由于user2428118而节省了10个字节。还删除了一些不必要的分号。

我很确定这可以继续打下去,但是我不能完全解决。我仍然是新事物,所以任何建议都非常感激:)

z=a=>{b=c=0;j=[[]];d='';a.split``.forEach(g=>{h=g.toLowerCase();if('ruld'.includes(h)){d=h}f=x=>new Array(x[0].length).fill` `;switch(d){case 'l':if(!b){j.forEach(e => e.unshift` `);++b}j[c][b--]=g;break;case 'u':if(!c){j.unshift(f(j));++c}j[c--][b]=g;break;case 'd':if(c == j.length-1){j.push(f(j))}j[c++][b]=g;break;default:if(b==(j[0].length-1)){j.forEach(row=>row.push` `)}j[c][b++] = g;break}});j.forEach(x=>console.log(x.join``))}
<input id="a"> </input>
<input type="submit" onclick="z(document.getElementById('a').value);"/>

取消高尔夫:

z=a=>{
b=c=0;
j=[[]];
d='';
a.split``.forEach(g=>{
    h=g.toLowerCase();
    if('ruld'.includes(h)){d=h;}
    f=x=>new Array(x[0].length).fill` `;
    switch(d){
        case 'l':
            if(!b){
                j.forEach(e => e.unshift` `);
                ++b;
            }
            j[c][b--] = g;
            break;
        case 'u':
            if(!c){
                j.unshift(f(j));
                ++c;
            }
            j[c--][b] = g;
            break;
        case 'd':
            if(c == j.length-1){
                j.push(f(j));
            }
            j[c++][b] = g;
            break;
        default:
            if(b == (j[0].length-1)){
                j.forEach(row=>row.push` `);
            }
            j[c][b++] = g;
            break;
    }
});
j.forEach(x => console.log(x.join``));

}

我或多或少采取了以下方法:

  • 有一个数组来存储输出
  • 计算数组中下一个字符的x和y位置
  • 如果坐标将要在数组之外,请沿该方向扩展数组。通过将多余的空间推入该行的末尾或完全添加另一行。
  • 使array [y] [x] =当前字符
  • 打印结果数组

欢迎光临本站!我不是JavaScript方面的专家,但这看起来不错。
Wheat

欢迎!您可以通过替换节约11个字节['r','u','l','d']"ruld"
0'

另外,您也不需要z=在程序开始时
0

谢谢你的提示!JS的便利性永远不会令我惊讶。
贾哈尔'17

您可以在多个位置使用模板文字来保存一些字节,例如a.split``
user2428118

2

Python 3中,314 309 290 268字节

x=y=0
d,m=(1,0),{}
q={'u':(0,-1),'d':(0,1),'l':(-1,0),'r':d}
for c in input():m[x,y]=c;d=q.get(c.lower(),d);x,y=x+d[0],y+d[1]
X,Y=zip(*m)
O,P=min(X),min(Y)
r,p=0,print
exec("t=~~O;exec(\"p(m.get((t,r+P),' '),end='');t+=1;\"*-~abs(max(X)-O));r+=1;p();"*-~abs(max(Y)-P))

我尝试运行程序作为程序的输入,但结果很有趣。哈哈,尝试解释一下,Python!

减少了5个字节-补充Jack Bates。

23字节被坤多拂去

注意:由于使用不同的编辑器,我认为字节的测量存在一些错误。但是,我可以肯定最新的是正确的。


您可以通过替换删除5个字节'r':(1,0)'r':d和通过去除空间w[a] for。这也是疯了!!!这花了多长时间?

@JackBates在工作之间的一天。我有点痴迷。
拉特勋爵(Lord Ratte)'17

我们不是吗?这就是编码的重点!

我相信您可以用代替整X,Y=map(...)X,Y=zip(*m)。在这里工作。(将其*m解压缩到其键列表中,并用zip将其重新分组为两个元组。)
Nick Matteo

您也可以将for循环放在一行上以节省四个字节。
尼克·马特奥

2

PHP,238223205204字节

约尔格(stripos而不是preg_match)保存了12个字节,通过领先而不是尾随换行符保存了1个字节+大括号,从方向更改开始打了16个大括号,用三进制代替了1个+大括号if

for($m=$d=1;$o=ord($c=$argn[$i++]);$m=min($m,$x),$n=max($n,$x))stripos(_ulrd,$r[$y+=$e][$x+=$d]=$c)?$d=($e=[1,-1][$o&11])?0:$o%4-1:0;ksort($r);foreach($r as$s)for($i=$m-print"\n";$i++<$n;)echo$s[$i]??" ";

与管道一起运行php -nR '<code>'在线尝试

分解

for($m=$d=1;                    # init max index and x-offset to 1
    $o=ord($c=$argn[$i++]);     # loop through characters
    $m=min($m,$x),$n=max($n,$x))    # 3. adjust min and max x offset
    stripos(_ulrd,
        $r[$y+=$e][$x+=$d]=$c       # 1. move cursor; add character to grid
    )?                              # 2. if direction change
        $d=(
            $e=[1,-1][$o&11]            # set y direction
        )
        ?0:$o%4-1                       # set x direction
    :0;

ksort($r);              # sort rows by index
foreach($r as$s)        # loop through rows
    for($i=$m-print"\n";    # print newline, reset $i
        $i++<$n;)           # loop $i from min index to max index
        echo$s[$i]??" ";        # print character, space if empty

1
如果我看到此权利strspn($r[$y+=$e][$x+=$d]=$c,udlruDLR)应保存一些字节而不是使用正则表达式,则stripos(_ulrd,$ r [$ y + = $ e] [$ x + = $ d] = $ c)`应该更好,因为strspn可以$argn保存3个字节
JörgHülsermann17年

@JörgHülsermann你在跟踪我吗?:D你是对的。
泰特斯

今天没有人编辑他的帖子,我已经看到了您的答案,并且看到可以将其缩短。抱歉,改进不是很大,您无法击败JS答案。这让感到高兴和自豪,如果我能找到你的答案的一些字节,但是我没有这个搜索的情况下
约尔格Hülsermann

@JörgHülsermann别担心;除了您的12个字节,我还发现了另外21个字节。感谢您重新访问此字节。
泰特斯

10%以上是不错的
约尔格Hülsermann

2

Java的10,288 286 280 263字节

s->{int l=s.length(),x=l,y=l,d=82,A=x,B=y;var r=new char[l+=l][l];for(var c:s.toCharArray()){A=x<A?x:A;B=y<B?y:B;r[x][y]=c;c&=~32;d="DLRU".contains(""+c)?c:d;x+=5-d/14;y+=3-(d^16)/23;}s="";for(x=A;x<l;x++,s+="\n")for(y=B;y<l;y++)s+=r[x][y]<1?32:r[x][y];return s;}

-17个字节感谢@Grimy

说明:

在这里尝试。(注:我删除所有尾随空格/换行符,使输出位更紧凑随意删除。.replaceAll("(m?)\\s+$","")test-method看到实际的结果。)

s->{                              // Method with String as both parameter and return-type
  int l=s.length(),               //  Length of input String
      x=l,y=l,                    //  x,y coordinates, starting at `l`,`l`
      d=82,                       //  Direction, starting towards the right
      A=x,B=y;                    //  Min x & y values to remove leading spaces at the end
  var r=new char[l+=l][l];        //  character-matrix, with size `l`+`l` by `l`+`l`
  for(var c:s.toCharArray()){     //  Loop over the characters of the input String:
    A=x<A?x:A;                    //   Adjust minimum x `A` if necessary
    B=y<B?y:B;                    //   Adjust minimum y `B` if necessary
    r[x][y]=c;                    //   Fill x,y with the current character
    c&=~32;                       //   Make character uppercase if it isn't yet
    d="DLRU".contains(""+c)?c:d;  //   Change the direction if necessary
    x+=5-d/14;                    //   Set the next x coordinate based on the direction
    y+=3-(d^16)/23;}              //   Set the next y coordinate based on the direction
  s="";                           //  After the loop: create an empty result-String
  for(x=A;x<l;x++,                //  Loop `x` in the range [`A`, `l`):
      s+="\n")                    //    And append a new-line after every iteration
    for(y=B;y<l;y++)              //   Inner loop `y` in the range [`B`, `l`):
      s+=r[x][y]<1?               //    If the cell at x,y is empty:
          32                      //     Append a space to the result-String
         :r[x][y];                //    Else: append the character to the result-String
  return s;}                      //  After the nested loop: teturn result-String

1
d<69?1:d>84?-1:0可以5-d/14
格林尼治标准

1
同样,d==82?1:d==76?-1:0可能是3-(d^16)/23
Grimmy

@肮脏的谢谢。我知道这两个部分都可以打高尔夫球,但是我对按位/算术转换很不好,所以我没有费心尝试。感谢您的-17个字节!:)
凯文·克鲁伊森

1

Perl,204 + 3 = 207字节

+3 -F

空格不是代码的一部分,而是为了易于阅读而提供的。

%p=(d,1,l,2,u,3,r,$x=$y=0);
for(@F){
    $m{"$x,$y"}=$_;
    $g=$p{lc$_}if/[dlur]/i;
    $g%2?($y+=2-$g):($x+=1-$g);
    ($a>$x?$a:$b<$x?$b:$x)=$x;
    ($c>$y?$c:$d<$y?$d:$y)=$y
}
for$k($c..$d){
    print($m{"$_,$k"}||$")for$a..$b;
    say""
}

类似于我对Fizz Buzz挑战的解决方案,我在创建过程中的每一步都创建了带有x,y坐标的哈希,并保留存储的x和y坐标的最大值和最小值,然后循环遍历并打印出所有内容。

如果我不顾一切,我可能可以将第一个for循环的最后三行变成一个令人讨厌的语句,该语句可能节省一两个字节,但是我不希望出现完全不可读的结果。


1

Excel VBA,205个字节

Sub t(a)
Z=1:x=70:y=x:For i=1 To Len(a)
s=Mid(a,i,1):Cells(y,x).Value=s:Select Case LCase(s)
Case "l":Z=-1:w=0
Case "d":Z=0:w=1
Case "r":Z=1:w=0
Case "u":Z=0:w=-1
End Select:x=x+Z:y=y+w:Next:End Sub

我对Excel与现有答案竞争的能力感到惊讶。之所以有效,是因为wz跟踪方向。


起始位置70可能还不够。此外,不允许使用前置空格
edc65

1

SmileBASIC,148个 146字节

DEF W M,S,T
WHILE""<M
A=INSTR(@DLURdlur,M[0])*PI()/2IF A>0THEN S=COS(A)T=SIN(A)
X=CSRX+S
Y=CSRY+T?SHIFT(M);
SCROLL-!X,-!Y
LOCATE!X+X,Y+!Y
WEND
END

使用调用函数W "text",vx,vy,其中vx和vy是开始的方向(默认为1,0)


X或Y小于0时会怎样?
edc65

现在,当光标离开屏幕时,它将滚动所有文本。
17Me21年

0

Swift 3,283字节

func w(a:String){var t=a.characters,d=t.count,c=Array(repeating:Array(repeating:" ",count:d*2),count:d*2),i=d,j=d,l=["d":(1,0),"u":(-1,0),"l":(0,-1),"r":(0,1)],e=(0,1)
t.map{c[i][j]="\($0)"
e=l["\($0)".lowercased()] ?? e
i+=e.0
j+=e.1}
c.map{$0.map{print($0,terminator:"")};print()}}

不打高尔夫球

func w(a:String){
    var t=a.characters,d=t.count,c=Array(repeating:Array(repeating:" ",count:d*2),count:d*2),i=d,j=d,l=["d":(1,0),"u":(-1,0),"l":(0,-1),"r":(0,1)],e=(0,1)
    t.map{
        c[i][j]="\($0)"
        e=l["\($0)".lowercased()] ?? e
        i+=e.0
        j+=e.1
    }
    c.map{
        $0.map{
            print($0,terminator:"")
        };
        print()
    }
}

警告

较长的输入将需要更大的屏幕。据我了解,挑战规则可以接受“空”行/列的输出。

兰特

  • 换行符是printsux 的默认终止符
  • 没有简单的方法来创建已知长度的数组会破坏分数。
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.