逐行打印波浪形字符串


23

挑战

编写一个将字符串s和整数n作为参数的程序或函数。程序按如下所示转换时应打印(或返回)字符串:

从左上角开始,然后向下和向右移动,以s高度波动的形式书写n。然后,从上到下,将每行合并为一个字符串(无空格)。

给定字符串“ WATERMELON”,高度为3:

该波应如下所示:

W   R   O
 A E M L N
  T   E

然后,合并从上到下的行:

WRO
AEMLN
TE

因此,您的程序应返回字符串“ WROAEMLNTE”

同样,高度为4的“ WATERMELON”应产生以下波动:

W     E
 A   M L
  T R   O
   E     N

然后,您的程序应返回字符串“ WEAMLTROEN”

规则

输入项

输入可以采用任何合理的格式。在任何情况下,该字符串都可以使用。您可能会认为0 < n <= s.length

输出量

输出应仅包含转换后的字符串(无论是返回还是打印到STDOUT),以及任何结尾的换行符。

计分

这是,因此最短答案以字节为单位!不允许出现标准漏洞。

测试用例

Input                        Output

programmingpuzzles, 5 ->     piermnlsomgzgapzru
codegolf, 3           ->     cgoeofdl
elephant, 4           ->     enlatehp
1234567, 3            ->     1524637
qwertyuiop, 1         ->     qwertyuiop

我们可以假设n> 1吗?请澄清,如果没有添加测试用例
Luis Mendo

1
您可以假设n > 0,但这n=1是有效的情况。我现在将更新问题。
Cowabunghole

2
我知道@@ Cowabunghole。:) Related仅表示它有点相似,现有的答案可能对该挑战有所帮助。我仅提及使它们出现在右侧的链接问题中。相关!=重复。;)
Kevin Cruijssen

5
我从未见过仅用一个轨道编码的轨道围栏密码。只是说
wooshinyobject

1
@Veskah是的,旧的双rot13技巧。
wooshinyobject

Answers:


5

外壳,6个字节

δÖK…¢ḣ

在线尝试!

适用于n = 1为好。

说明

δÖK…¢ḣ  Implicit inputs, say n=4 and s="WATERMELON"
     ḣ  Range: [1,2,3,4]
    ¢   Cycle: [1,2,3,4,1,2,3,4,1,2,3,4..
   …    Rangify: [1,2,3,4,3,2,1,2,3,4,3,2..
δÖK     Sort s by this list: "WEAMLTROEN"
        Print implicitly.

高阶函数δ在后台运行。假设您有一个带一元函数和一个列表并返回新列表的高阶函数。例如,Ö采用一个函数并使用它作为键对列表进行排序。然后使用δÖ一个二进制函数和两个列表,将列表压缩在一起,应用Ö以二进制函数为键对对进行排序,最后将对投影到第二个坐标。我们将其K用作键函数,该函数仅返回其第一个参数,而忽略第二个参数。


6

MATL,16字节

Zv3L)t?yn:)2$S}i

在线尝试!验证所有测试用例

说明

考虑输入5'programmingpuzzles'

Zv     % Input, implicit: number n. Symmetric range
       % STACK: [1 2 3 4 5 4 3 2 1]
3L     % Push [1 -1+1j]. When used as an index, this means 1:end-1
       % STACK: [1 2 3 4 5 4 3 2 1], [1 -1+1j]
)      % Index. Removes last element
       % STACK: [1 2 3 4 5 4 3 2]
t      % Duplicate
       % STACK: [1 2 3 4 5 4 3 2], [1 2 3 4 5 4 3 2]
?      %   If non-empty and non-zero
       %   STACK: [1 2 3 4 5 4 3 2]
  y    %   Implict input: string s. Duplicate from below
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2], 'programmingpuzzles'
  n    %   Number of elements
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2], 18
  :    %   Range
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2], [1 2 3 ··· 17 18]
  )    %   Index modularly
       %   STACK: 'programmingpuzzles', [1 2 3 4 5 4 3 2 1 2 3 4 5 4 3 2 1 2]
  2$S  %   Two-input sort: stably sorts first input as given by the second
       %   STACK: 'piermnlsomgzgapzru'
}      % Else. This branch is entered when n=1. The stack contains an empty array
       %   STACK: []
  i    %   Take input
       %   STACK: [], [], 'programmingpuzzles'
       % End, implicit
       % Display stack, implicit. Empty arrays are not displayed



5

R,68字节

function(s,n)intToUtf8(unlist(split(utf8ToInt(s),-(n:(2.9-n)-1)^2)))

在线尝试!

  • -10个字节,感谢@Giuseppe
  • -17个字节,因为我很傻
  • -9个字节,n=1大小写固定为@ J.Doe
  • -3个字节,感谢@JayCe


3

05AB1E(旧版)11 8 字节

Σ²Lû¨¾è¼

@LuisMendo的MATL答案启发。
-3个字节,感谢@Adnan,因为我是个白痴..>。>

在线尝试

说明:

Σ           # Sort the (implicit) input-string by:
 ²L         #  Create a list in the range [1, second input-integer]
            #   i.e. 5 → [1,2,3,4,5]
   û        #  Palindromize it
            #   i.e. [1,2,3,4,5] → [1,2,3,4,5,4,3,2,1]
    ¨       #  Remove the last item
            #   i.e. [1,2,3,4,5,4,3,2,1] → [1,2,3,4,5,4,3,2]
     ¾è     #  Index into it (with wraparound) using the counter_variable (default 0)
            #   i.e. counter_variable = 0 → 1
            #   i.e. counter_variable = 13 → 4
       ¼    #  And after every iteration, increase the counter_variable by 1

注意:counter_variable之所以使用,是因为在05AB1E的Python旧版中,Σ没有内置的index- N,它在新的Elixir重写版本的05AB1E中确实具有该索引。那么,为什么我仍然使用旧版?因为在Elixir重写中,它隐式地将字符串转换为字符列表,因此需要额外的操作}J才能将其转换回字符串以输出(并且它现在还包含一个错误,该错误è根本无法索引到加长的列表中) ..:S)


您不需要¹g∍零件,因为05AB1E对使用了循环索引è
阿德南(Adnan)

@Adnan啊,我是个白痴..>。>谢谢!
凯文·克鲁伊森

2

Japt,16字节

¬üÏu´VÑ aV°ÃÔc q

在线测试!

说明

 ¬ üÏ   u´ VÑ  aV° Ã Ô c q
Uq üXY{Yu--V*2 aV++} w c q    Ungolfed
                               Implicit: U = input string, V = size of wave
Uq                             Split U into chars.
   üXY{            }           Group the items in U by the following key function:
       Y                         Take the index of the item.
        u--V*2                   Find its value modulo (V-1) * 2.
               aV++              Take the absolute difference between this and (V-1).
                                 This maps e.g. indices [0,1,2,3,4,5,6,7,...] with V=3 to
                                                        [2,1,0,1,2,1,0,1,...]
                                 The items are then grouped by these values, leading to
                                 [[2,6,...],[1,3,5,7,...],[0,4,...]].
                     w         Reverse the result, giving [[0,4,...],[1,3,5,7,...],[2,6,...]].
                       c       Flatten.
                         q     Join back into a single string.

那个ü方法是新的吗?
路易斯·费利佩·德·耶稣·穆诺兹

是的,在星期六添加:-)
ETHproductions '18 -10-16

您可以将输入作为字符数组来保存一个字节并输出一个字节,也可以使用该-P标志保存另一个
2。– Shaggy

2

果冻,8 字节

高度为1的情况下6倍失败;用来寻址的两个字节...也许可以找到7个字节?

ŒḄṖȯ1ṁỤị

双向链接接受一个正整数和一个字符列表,该列表产生一个字符列表。

在线尝试!

怎么样?

ŒḄṖȯ1ṁỤị - Link: positive integer N; list of characters, T
ŒḄ       - bounce (implicit range of) N -> [1,2,3,...,N-1,N,N-1,...,3,2,1]
  Ṗ      - pop off the final entry         [1,2,3,...,N-1,N,N-1,...,3,2]
   ȯ1    - OR one                          if this is [] get 1 instead
     ṁ   - mould like T (trim or repeat to make this list the same length as T)
      Ụ  - grade-up (get indices ordered by value - e.g. [1,2,3,2,1,2] -> [1,5,2,4,6,3])
       ị - index into T

2

JavaScript(ES6),75个字节

@MattH建议的较短公式(-3字节)

将输入作为(string)(n)

s=>n=>--n?[...s].map((c,x)=>o[x=x/n&1?n-x%n:x%n]=[o[x]]+c,o=[])&&o.join``:s

在线尝试!


JavaScript(ES7),78个字节

@ETHproductions节省了4个字节

将输入作为(string)(n)

s=>n=>--n?[...s].map((c,x)=>o[x=n*n-(x%(n*2)-n)**2]=[o[x]]+c,o=[])&&o.join``:s

在线尝试!


我的解决方案最终与您的解决方案非常相似。您可以保存-3个字节,计算owith 的插入索引,x/n&1?n-x%n:x%n而不是n*n-(x%(n*2)-n)**2
MattH

@MattH做得好。谢谢!
阿诺尔德


1

MBASIC146个 159 155字节

1 INPUT S$,N:DIM C$(N):P=1:D=1:FOR I=1 TO LEN(S$):C$(P)=C$(P)+MID$(S$,I,1)
2 IF N>1 THEN P=P+D
3 IF P=N OR P=1 THEN D=-D
4 NEXT:FOR I=1 TO N:PRINT C$(I);:NEXT

更新为处理n = 1

输出:

? programmingpuzzles, 5
piermnlsomgzgapzru

? codegolf, 3
cgoeofdl

? elephant, 4
enlatehp

? 1234567, 3
1524637

? WATERMELON, 4
WEAMLTROEN

? qwertyuiop, 1
qwertyuiop

当前不支持情况n = 1。
wooshinyobject

更新为处理案例n = 1
wooshinyobject

通过清理比较节省了4个字节。
wooshinyobject

1

Perl 6,49个字节

->\n{*.comb.sort({-abs n-1-$++%(2*n-2||1)}).join}

在线尝试!

将输入作为咖喱函数。

说明:

->\n{*.comb.sort({-abs n-1-$++%(2*n-2||1)}).join}
->\n{                                           }  # Take an number
     *.comb        # Turn the string into a list of chars
           .sort({                       })   # And sort them by
                           $++    # The index of the char
                              %(2*n-2||1)  # Moduloed by 2*(n-1) or 1 if n is 0
                       n-1-       # Subtract that from n-1
                   abs            # get the absolute value
                  -               # And negate to reverse the list
                                          .join  # and join the characters

它的排序顺序如下所示(用于n=5):

(-4 -3 -2 -1 0 -1 -2 -3 -4 -3 -2 -1 0 -1 -2 -3 -4 -3 -2 -1)

1

J,24个字节

4 :'x\:(#x)$}:|i:<:y'::[

在线尝试!

显式二元动词。像这样运行它'codegolf' f 3

怎么运行的

4 :'x\:(#x)$}:|i:<:y'::[    x: string, y: height
4 :                         Define a dyadic verb:
               i:<:y        Generate a range of -(y-1) .. y-1
            }:|             Take absolute value and remove last
       (#x)$             1) Repeat to match the string's length
    x\:                     Sort x by the decreasing order of above
                     ::[    If 1) causes `Length Error`, return the input string instead

通常,显式函数以的形式额外占用5个字节n :'...'。但是,如果添加了错误处理,由于中的括号和空格,差异将减少到2个字节(tacit)<space>::


为什么我总是倾向于使用sort up?您的显式动词仍要短3个字节。好决定!
加伦·伊万诺夫


1

Powershell,99 95字节

param($s,$n)$r=,''*$n
$s|% t*y|%{$r[((1..$n+$n..1)*$s.Length|gu)[$i++*($n-gt1)]-1]+=$_}
-join$r

测试脚本:

$f = {

param($s,$n)$r=,''*$n
$s|% t*y|%{$r[((1..$n+$n..1)*$s.Length|gu)[$i++*($n-gt1)]-1]+=$_}
-join$r

}

@(
    ,("1234567", 3            ,     "1524637")
    ,("qwertyuiop", 1         ,     "qwertyuiop")
    ,("codegolf", 3           ,     "cgoeofdl")
    ,("elephant", 4           ,     "enlatehp")
    ,("programmingpuzzles", 5 ,     "piermnlsomgzgapzru")
) | % {
    $s,$n,$e = $_
    $r = &$f $s $n
    "$($r-eq$e): $r"
}

输出:

True: 1524637
True: qwertyuiop
True: cgoeofdl
True: enlatehp
True: piermnlsomgzgapzru

说明

剧本:

  • 创建一个行数组
  • 用适当的值填充行,
  • 并返回联接的行。

该表达式((1..$n+$n..1)*$s.Length|gu 生成类似的序列,1,2,3,3,2,1,1,2,3,3,2,1... 并删除相邻的重复项。guGet-Unique的别名。

  • 对于$n=3重复数据删除的序列为:1,2,3,2,1,2,3,2,1...
  • 对于$n=1重复数据删除的序列为:1

该表达式$i++*($n-gt1) 返回重复数据删除序列中的索引。=$i++如果$n>1,否则=0


1

红宝石75 65字节

->s,h{a=['']*h;x=-k=1;s.map{|c|a[x+=k=h-x<2?-1:x<1?1:k]+=c};a*''}

在线尝试!

将输入作为字符数组,返回字符串

运作方式:

  • 创建h字符串
  • 对于输入字符串中的每个字符,根据其索引决定将其放入哪个字符串(要修改的字符串的索引先升h后降,直到0等等)
  • 返回所有连接在一起的字符串


@GB在最后一种情况下不起作用
Asone Tuhid

1

C,142134字节

感谢Jonathan Frech,节省了8个字节

码:

t;i;j;d;f(s,n)char*s;{for(t=strlen(s),i=0;i<n;i++)for(j=0;j+i<t;j=d+i+(n<2))d=j-i+2*~-n,putchar(s[i+j]),i>0&i<n-1&d<t&&putchar(s[d]);}

说明:

// C variable and function declaration magic
t;i;j;d;f(s,n)char*s;{
    // Iterate through each "row" of the string
    for(t=strlen(s),i=0;i<n;i++)
        // Iterate through each element on the row
        // Original index iterator here was j+=2*(n-1), which is a full "zig-zag" forward
        // The (n<2) is for the edge case of n==1, which will break the existing logic.
        for(j=0; j+i<t; j=d+i+(n<2))
            // If j+i is the "zig", d is the "zag": Original index was d=j+i+2*(n-i-1)
            // Two's complement swag here courtesy of Jonathan Frech
            d=j-i+2*~-n,
            putchar(s[i+j]),
            // Short circuit logic to write the "zag" character for the middle rows
            i>0 & i<n-1 & d<t && putchar(s[d]);
}

在线尝试!


1
您好,欢迎来到PPCG;不错的第一场高尔夫球。134个字节(假定为GCC)。
乔纳森·弗雷希

0

木炭,21字节

⭆NΦη¬⌊E²﹪⁺μ⎇νι±ι∨⊗⊖θ¹

mim±i=0(mod2n2)

 N                      First input as a number
⭆                       Map over implicit range and join
   η                    Second input
  Φ                     Filter over characters
       ²                Literal 2
      E                 Map over implicit range
          μ             Character index
             ι ι        Outer index
              ±         Negate
            ν           Inner index
           ⎇            Ternary
         ⁺              Plus
                   θ    First input
                  ⊖     Decremented
                 ⊗      Doubled
                    ¹   Literal 1
                ∨       Logical Or
        ﹪               Modulo
     ⌊                  Minimum
    ¬                   Logical Not
                        Implicitly print

0

SNOBOL4(CSNOBOL4),191字节

	S =INPUT
	N =INPUT
	A =ARRAY(N)
	A<1> =EQ(N,1) S	:S(O)
I	I =I + -1 ^ D
	S LEN(1) . X REM . S	:F(O)
	A<I> =A<I> X
	D =EQ(I,N) 1
	D =EQ(I * D,1)	:(I)
O	Y =Y + 1
	O =O A<Y>	:S(O)
	OUTPUT =O
END

在线尝试!

注意到S然后N在单独的行。

说明:

	S =INPUT			;* read S
	N =INPUT			;* read N
	A =ARRAY(N)			;* create array of size N
	A<1> =EQ(N,1) S	:S(O)		;* if N = 1, set A<1> to S and jump to O
I	I =I + -1 ^ D			;* index into I by I + (-1)^D (D starts as '' == 0)
	S LEN(1) . X REM . S	:F(O)	;* extract the first character as X and set S to the
					;* remaining characters, jumping to O when S is empty
	A<I> =A<I> X			;* set A<I> to A<I> concatenated with X
	D =EQ(I,N) 1			;* if I == N, D=1
	D =EQ(I * D,1)	:(I)		;* if I == D == 1, D = 0. Goto I
O	Y =Y + 1			;* increment the counter
	O =O A<Y>	:S(O)		;* concatenate the array contents until last cell
	OUTPUT =O			;* and print
END



0

Pyth22 21字节

|seMhD,V*lz+PUQP_UQzz

接受输入,n然后s在单独的行上输入。在此处在线尝试,或在此处一次验证所有测试用例。

|seMhD,V*lz+PUQP_UQzz   Implicit: Q=eval(input()), z=remaining input

             UQ         Range [0-Q)
            P           All but last from the above
                         e.g. for Q=3, yields [0,1]
               P_UQ     All but last of reversed range
                         e.g. for Q=3, yields [2,1]
           +            Concatenate the previous two results
                          e.g. for Q=3, yields [0,1,2,1]
        *lz              Repeat len(z) times
      ,V           z    Vectorised pair the above with z, truncating longer to length of shorter
                          e.g. for Q=3, z=WATERMELON, yields:
                          [[0,'W'],[1,'A'],[2,'T'],[1,'E'],[0,'R'],[1,'M'],[2,'E'],[1,'L'],[0,'O'],[1,'N']]
    hD                  Sort the above by the first element
                          Note this is a stable sort, so relative ordering between equal keys is preserved
  eM                    Take the last element of each
 s                      Concatenate into string
                          Note that if n=1, the result of the above will be 0 (sum of empty array)
|                   z   If result of above is falsey, yield z instead

编辑:通过将空支票移至处理结束来保存字节。先前版本: seMhD,V*lz|+PUQP_UQ]0z


0

红色,153字节

func[s n][i: v: m: 1 b: collect[foreach c s[keep/only reduce[v i c]v: v + m
if all[n > 1(i: i + 1)%(n - 1)= 1][m: -1 * m]]]foreach k sort b[prin last k]]

在线尝试!

说明:

f: func [ s n ] [                      ; s is the string, n is the height
    i: 1                               ; index of the current character in the string
    v: 1                               ; value of the "ladder"
    m: 1                               ; step (1 or -1)
    b: collect [                       ; collect the values in a block b
        foreach c s [                  ; foreach character in the string 
            keep/only reduce [ v i c ] ; keep a block of the evaluated [value index char] 
            i: i + 1                   ; increase the index
            v: v + m                   ; calculate the value 
            if all [ n > 1             ; if height is greater than 1 and
                    i % (n - 1) = 1    ; we are at a pick/bottom of the ladder
                   ]
                [ m: -1 * m ]          ; reverse the step
        ]
    ]
    foreach k sort b [ prin last k ]   ; print the characters in the sorted block of blocks
]

0

我有两种解决方法。我首先做的第一个解决方案,然后我想到了另一种方法来保存字节,但事实并非如此,因此无论如何我都将其包括在内。


解决方案1

PHP152个 144 116字节

<?php
for($i=0;$i<$n=$argv[2];$i++)
    for($j=$i;$s=$argv[1][$j];$j+=$n<2|(($f=!$f|!$i)?$i<$n-1?$n+~$i:$i:$i)*2)
        echo $s;
  • 8个字节感谢@JoKing
  • @Shaggy占用了28个字节

在线尝试!


解决方案2

PHP,162字节

<?php
$s=$argv[0];
$n=$argv[1];
$l=strlen($s);
for($i=0;$i<$l;){
    for($j=0;$j<$n&&$i<$l;)
        $a[$j++].=$s[$i++];
    for($j=$n-2;$j>0&&$i<$l;)
        $a[$j--].=$s[$i++];
}
echo join($a);

在线尝试!


你并不需要初始化$f$n-1-$i可能$n-~$i144字节
Jo King

@JoKing的改进为-28字节
毛茸茸的

哎呀 当打破n=1这个适用于相同的字节数。
毛茸茸的

您也可以使用短标记和删除空格之后echo,以挽救5个字节
长毛

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.