g | x | w | all
Bytes Lang Time Link
059Tcl171208T124748Zsergiol
004Thunno 2230627T183100ZThe Thon
080SNOBOL4 CSNOBOL4171218T224135ZGiuseppe
046Python 3211110T131721ZStephen
061Red171208T135122ZGalen Iv
003Japt m190328T001450ZShaggy
003Vyxal210818T004743Zemanresu
004Brachylog200901T121852ZUnrelate
003Jelly200901T120337ZUnrelate
016Pip200901T100833ZRazetime
5418C#171208T114450ZLiefdeWe
00405AB1E171208T112155ZEmigna
031Zsh+coreutils190327T175032ZGammaFun
nan181005T154058Z18276412
053Java 8180518T112132ZKevin Cr
101C171208T200102ZSteadybo
034Julia 0.6171222T135755ZLukeS
007MATL171208T172645ZSanchise
059Clean171219T073605ZΟurous
042JavaScript ES6171219T073026Zl4m2
048Befunge93171219T020623ZJo King
009Charcoal171208T150128ZNeil
009J171208T144034ZFrownyFr
033Röda171209T190324Zfergusq
004APL Dyalog Classic171208T145930Zngn
nanGNU sed171209T033707ZJordan
nanRuby171208T221116ZJordan
044Perl 6171209T011453ZBrad Gil
072Swift171208T201029ZEndenite
027Haskell171208T115914Ztotallyh
004V171208T170208Znmjcman1
011CJam171208T163257ZEsolangi
033Wolfram Language Mathematica171208T164149ZMisha La
065TSQL171208T164021ZBradC
066Alumin171208T161443ZConor O&
004Jelly171208T132954Zuser2027
018Retina171208T151029ZNeil
054PHP171208T145036ZTitus
085R171208T123408ZGiuseppe
036Python 2171208T133934Zovs
005Jelly171208T140630ZMr. Xcod
045Python 2171208T115540ZMr. Xcod
018Stacked171208T134327ZConor O&
nanPerl 5171208T130927ZNahuel F
010APL Dyalog Unicode171208T132159ZJ. Sall&
004Husk171208T131953ZZgarb
051Standard ML MLton171208T130158ZLaikoni
012APL Dyalog171208T130527ZUriel
026Haskell171208T121055ZLaikoni
043JavaScript ES6171208T114342ZArnauld
014K oK171208T120535Zmkst
013Alice171208T114809ZMartin E
007Actually171208T120355Zuser4594
006Pyth171208T114705ZMr. Xcod

Tcl, 59 bytes

proc B L {lmap e $L {expr {[incr i]%2?$e:[string rev $e]}}}

Try it online!

Thunno 2, 4 bytes

ıṅ{r

Attempt This Online!

Explanation

ıṅ{r  # Implicit input
ı     # Map over the input list:
 ṅ    #  Push the 0-based iteration index
  {   #  That many times repeat:
   r  #   Reverse the string
      # Implicit output

SNOBOL4 (CSNOBOL4), 89 80 bytes

R	X =1 - X
	N =INPUT	:F(END)
	OUTPUT =EQ(X) N :S(R)
	OUTPUT =REVERSE(N) :(R)
END

Try it online!

Python 3, 46 bytes

lambda l:[u[::(-1)**i]for i,u in enumerate(l)]

Try it online!

Red, 61 bytes

f: func[s][forall s[if odd? length? s[reverse s/1]print s/1]]

Try it online!

Japt -m, 4 3 bytes

I/O as an array of lines.

zVÑ

Try it

zVÑ     :Implicit map of each string at 0-based index V in input array
z       :Rotate 90 degrees clockwise
 EÑ     :V*2 times

Vyxal, 3 bytes

yRY

Try it Online!

Look ma, no Unicode!

y   # Uninterleave
 R  # Vectorised reverse
  Y # Interleave

Brachylog, 4 bytes

i↔ⁱ⁾

Try it online!

Doesn't feel entirely honest to call this generator a 4-byter considering it costs 3 more bytes to actually use it.

i       Take an element from the input paired with its 0-index,
 ↔ ⁾    and reverse the element
  ⁱ     repeatedly
   ⁾    a number of times equal to the index.

Jelly, 3 bytes

UÐe

Try it online!

(or UÐo, reversing the other lines.)

U      (Vectorized) reverse
 Ðe    the even numbered lines.

Essentially Mr. Xcoder's 5-byter, but with what I assume is a newer addition to the language.

Pip, 16 bytes

Flg{Po?lRVlo!:o}

This loops over each line and reverses it based on the value of variable o(Predefined to 1), which is inverted each time the loop runs.

Try it online!

Fi,#gPi%2?RVg@ig@i

This one is based on the indices of each line instead.

C#, 64 54 + 18 bytes

Try It Online!

a=>a.Select((x,i)=>i%2<1?x:string.Concat(x.Reverse())).ToArray()

Saved 10 bytes by returning IEnumerable

05AB1E, 5 4 bytes

εNFR

Try it online!

Explanation

ε     # apply to each element (row)
 NF   # index times do:
   R  # reverse

Zsh+coreutils, 31 bytes

for s;((i^=1))&&<<<$s||rev<<<$s

Try it online!

Repeated xoring will switch i between 0 and 1, so we alternate our output. Because the ternary chains our commands together, surrounding { } are unnecessary.

Zsh+coreutils, 23 bytes (almost correct)

for a b;<<<$a&&rev<<<$b

Try it online!

for sets b to the empty string if there are no more arguments. This unfortunately means that for an odd number of inputs, an extra empty line will be printed at the end.

Comma delimited:

Stax, 12 bytes

ü«äì╠▒╕█╬pεû

Run and debug it

input: ABC,def,GHI,jkl,MNO,pqr,STU

Newline delimited:

Stax, 8 bytes

Çε÷┘)¼M@

Run and debug it

input:

ABC
def
GHI
jkl
MNO
pqr
STU

output for both:

CBA
def
IHG
jkl
ONM
pqr
UTS

Java 8, 53 bytes

a->{for(int i=1;i<a.length;i+=2)a[i]=a[i].reverse();}

Reverses every odd 0-indexed item.
Input as an array of StringBuffers. Modifies the input-array instead of returning a new one to save bytes.

Try it online.

Explanation:

a->{                       // Method with StringBuffer-array parameter and no return-type
  for(int i=1;i<a.length;  //  Loop `i` in the range `[1, input_length)
      i+=2)                //    And increase `i` by 2 after every iteration
    a[i]=a[i].reverse();}  //   Reverse the StringBuffer at index `i`

C,  118   103  101 bytes

Thanks to @gastropner for saving 15 bytes and thanks to @ceilingcat for saving a byte!

i;f(l,n)char**l;{for(;n--;++l,n&1&&puts(""))for(i=strlen(*l);(n&1||!puts(*l))*i;putchar((*l)[--i]));}

Try it online!

C, 147 bytes

i,j;f(char*s){char t[strlen(s)];for(i=0;;t[j++]=*s++)if(!*s|*s==10){t[j]=0;i=!i;for(i&&(j=!puts(t));j;j||puts(""))putchar(t[--j]);if(!*s++)break;}}

Try it online!

Julia 0.6, 34 bytes

~x=x[2:2:end]=reverse.(x[2:2:end])

Try it online!

Function modifying the input in place.

MATL, 7 bytes

"@gNo?P

Try it online!

Takes a cell array of strings, and leaves the result on the stack.

Explanation

"         % Loop over cell array
 @g     %   Push new string, and 'unwrap' it from its cell array.
     No?  %   Yes? Maybe so? (push stack size N, check if odd o, if so,...
        P %     Flip

As the implicit print function in MATL does not display an empty line for an empty item on the stack, we explicitly end the if-statement and loop and print the stack in the TIO footer:

]]X#

But this is not part of the program, as per the IO default

Clean, 59 bytes

import StdEnv
@t=[if(n rem 2<1)s(reverse s)\\s<-t&n<-[0..]]

Try it online!

JavaScript (ES6), Firefox, 42 bytes, optimized from Arnauld's

a=>a.map(s=>[...s].sort(_=>a,a=!a).join``)

Befunge-93, 48 bytes

 <~,#_|#*-+92:+1:
#^_@  >:#,_"#"40g!*40p91+,~:1+

Try It Online

Prints first line in reverse. Has a trailing newline.

Basically, it works by alternating between printing as it gets input and storing the input on the stack. When it reaches a newline or end of input, it prints out the stack, prints a newline, and modifies the character at 0,4 to be either a # or a no-op to change the mode. If it was the end of input, end the program

Charcoal, 9 bytes

EN⎇﹪ι²⮌SS

Try it online! Link is to verbose version of code. Note: Charcoal doesn't know the length of the list, so I've added it as an extra element. Explanation:

 N          First value as a number
E           Map over implicit range
    ι       Current index
     ²      Literal 2
   ﹪        Modulo
  ⎇         Ternary
       S    Next string value
      ⮌     Reverse
        S   Next string value
            Implicitly print array, one element per line.

J, 9 bytes

(,|.&.>)/

Reduce from right to left, reversing all strings in the result and prepending the next string as is.

Try it online!

We can do 6 using ngn’s approach, but there will be extra spaces:

]&|./\

Try it online!

Röda, 33 bytes

{enum|[_[::-1]]if[_%2=0]else[_1]}

Try it online!

Explanation:

{
 enum|     /* Zip elements in the stream with [0,1,...] */
           /* For each string _1 and index _2: */
 [_[::-1]] /*  Push _1 reversed */\
 if[_%2=0] /*   if the index is even */
 else[_1]  /*  else push _1 */
}

APL (Dyalog Classic), 4 bytes

⊢∘⌽\

The input is a vector of character vectors.

is a function that reverses a vector (when is applied monadically).

is "dex" - a function that returns its right argument. When composed () with another function f it forces the latter to be monadic as A ⊢∘f B is equivalent to A ⊢ (f B) and therefore f B.

\ is the scan operator. g\A B C ... is the vector A (A g B) (A g (B g C)) ... where g is applied dyadically (infix notation). Substituting ⊢∘⌽ for g it simplifies to:

A (A ⊢∘⌽ B) (A ⊢∘⌽ (B ⊢∘⌽ C)) ...
A (⌽B) (⌽⌽C) ....
A (⌽B) C ....

The reversals at even positions (or odd, depending on how you count) cancel out.

Try it online!

GNU sed, 31 + 1 = 32 bytes

+1 byte for -r flag.

G
:
s/(.)(.*\n)/\2\1/
t
s/.//
N

Try it online!

Explanation

G                   # Append a newline and contents of the (empty) hold space
:
  s/(.)(.*\n)/\2\1/   # Move the first character to after the newline
  t                   # If we made the above substitution, branch to :
s/.//               # Delete the first character (now the newline)
N                   # Append a newline and the next line of input

Ruby, 19 + 2 = 21 bytes

+2 bytes for -nl flags.

$.%2<1&&$_.reverse!

Try it online!

Explanation

Practically identical to the Perl 5 answer, though I hadn’t seen that one when I wrote this.

With whitespace, the code looks like this:

$. % 2 < 1 && $_.reverse!

The -p option makes Ruby effectively wrap your script in a loop like this:

while gets
  # ...
  puts $_
end

The special variable $_ contains the last line read by gets, and $. contains the line number.

The -l enables automatic line ending processing, which automatically calls chop! on each input line, which removes the the \n before we reverse it.

Perl 6, 44 bytes

lines.map: ->\a,$b?{a.put;.flip.put with $b}

Try it

lines               # get the input as a list of lines
.map:
-> \a, $b? {        # $b is optional (needed if there is an odd number of lines)
  a.put;            # just print with trailing newline
  .flip.put with $b # if $b is defined, flip it and print with trailing newline
}

Swift, 90 85 82 72 bytes

-10 bytes thanks to @Mr.Xcoder

func f(a:[String]){print(a.reduce([]){$0.map{"\($0.reversed())"}+‌​[$1]})}

Haskell, 27 bytes

foldr((.map reverse).(:))[]

Try it online!

Haskell, 30 bytes

f(a:b:c)=a:reverse b:f c
f a=a

Try it online!

Recursion FTW.

V, 4 bytes

òjæ$

Try it online!

ò      ' <M-r>ecursively (Until breaking)
 j     ' Move down (breaks when we can't move down any more)
  æ$   ' <M-f>lip the line to the end$

CJam, 11 bytes

{2/Waf.%:~}

Try it online! (CJam array literals use spaces to separate elements)

Explanation:

{              Begin block, stack: ["Here are some lines" "of text for you" "to make a" "boustrophedon"]
 2/            Group by 2:         [["Here are some lines" "of text for you"] ["to make a" "boustrophedon"]]
   W           Push -1:            [["Here are some lines" "of text for you"] ["to make a" "boustrophedon"]] -1
    a          Wrap in array:      [["Here are some lines" "of text for you"] ["to make a" "boustrophedon"]] [-1]
     f.%       Vectorized zipped array reverse (black magic):
                                   [["senil emos era ereH" "of text for you"] ["a ekam ot" "boustrophedon"]]
        :~     Flatten:            ["senil emos era ereH" "of text for you" "a ekam ot" "boustrophedon"]
          }

Explanation for the Waf.% "black magic" part:

Wolfram Language (Mathematica), 33 bytes

Fold[StringReverse@*Append,{},#]&

Try it online!

How it works

StringReverse@*Append, when given a list of strings and another string as input, adds the string to the end of the list and then reverses all of the strings.

Folding the input with respect to the above means we:

Each line gets reversed one time fewer than the previous line, so the lines alternate direction.

T-SQL, 65 bytes

Our standard input rules allow SQL to input values from a pre-existing table, and since SQL is inherently unordered, the table must have row numbers to preserve the original text order.

I've defined the table with an identity column so we can simply insert lines of text sequentially (not counted toward byte total):

CREATE TABLE t 
    (i int identity(1,1)
    ,a varchar(999))

So to select and reverse alternating rows:

SELECT CASE WHEN i%2=0THEN a
ELSE reverse(a)END
FROM t
ORDER BY i

Note that I can save 11 bytes by excluding the ORDER BY i, and that is likely to return the list in the original order for any reasonable length (it certainly does for the 4-line example). But SQL only guarantees it if you include the ORDER BY, so if we had, say, 10,000 rows, we would definitely need this.

Alumin, 66 bytes

hdqqkiddzhceyhhhhhdaeuzepkrlhcwdqkkrhzpkzerlhcwqopshhhhhdaosyhapzw

Try it online!

FLAG: h
hq
  CONSUME A LINE
  qk
  iddzhceyhhhhhdaeuze
  pk
  rlhcw
  REVERSE STACK CONDITIONALLY
  dqkkrhzpkzerlhcwqops

  OUTPUT A NEWLINE
  hhhhhdao
syhapzw

Jelly, 5 4 bytes

U¹ƭ€

Try it online!

Thanks HyperNeutrino for -1 bytes! (actually because I never knew how ƭ works due to lack of documentation, this time I got lucky)

Retina, 18 bytes

{O$^`\G.

*2G`
2A`

Try it online! Explanation: The first stage reverse the first line, then the second stage prints the first two lines, after which the third stage deletes them. The whole program then repeats until there is nothing left. One trailing newline could be removed at a cost of a leading ;.

PHP, 54 bytes

function(&$a){foreach($a as&$s)$i++&1&&$s=strrev($s);}

function works on argument (call by reference)

R, 85 bytes

for(i in seq(l<-strsplit(readLines(),"")))cat("if"(i%%2,`(`,rev)(l[[i]]),"\n",sep="")

Try it online!

Input from stdin and output to stdout.

Each line must be terminated by a linefeed/carriage return/CRLF, and it prints with a corresponding newline. So, inputs need to have a trailing linefeed.

Python 2, 40 36 bytes

-4 bytes thanks to @Mr.Xcoder

def f(k):k[::2]=map(reversed,k[::2])

Try it online!

Outputs by modifying the input list


Python 2, 43 bytes

f=lambda k,d=1:k and[k[0][::d]]+f(k[1:],-d)

Try it online!

Jelly, 5 bytes

UJḤ$¦

Try it online!*

*Jelly outputs nested lists joined by spaces, and there is no native string type. Strings in Jelly are lists of characters, and that's why they're displayed that way. If you want them to be merged by spaces, Try this.

Python 2, 45 bytes

lambda k:[r[::i%-2|1]for i,r in enumerate(k)]

Try it online!

Python 2, 46 bytes

f=lambda k:k and[k[0][::len(k)%-2|1]]+f(k[1:])

Try it online!

Stacked, 18 bytes

[{x i:x$revi*}map]

Try it online!

This simply reverses each string in the array according to its position.

Alternative, 24 bytes

[:#':>#,tr[...$rev*]map]

Same approach, but generates indices manually.

Perl 5, 17 + 2 (-pl) = 19 bytes

odd lines reversed

$_=reverse if$.%2

even lines reversed

$_=reverse if$|--

After @Martin's comment : input needs to have a trailing linefeed.

try it online

APL (Dyalog Unicode), 10 bytes

⌽¨@{2|⍳≢⍵}

Works both ways:

Try it online! with ⎕IO←1

Try it online! with ⎕IO←0

How it works:

⌽¨@{2|⍳≢⍵} ⍝ tacit prefix fn
   {   ≢⍵} ⍝ Length of the input
      ⍳    ⍝ generate indexes from 1 (or 0 with ⎕IO←0)
    2|     ⍝ mod 2; this generates a boolean vector of 0s (falsy) and 1s (truthy)
  @        ⍝ apply to the truthy indexes...
⌽¨         ⍝ reverse each element

Husk, 4 bytes

z*İ_

Takes and returns a list of strings (the interpreter implicitly joins the result by newlines before printing). The first string is reversed. Try it online!

Explanation

z*İ_  Implicit input.
  İ_  The infinite list [-1,1,-1,1,-1,1..
z     Zip with input
 *    using multiplication.

In Husk, multiplying a string with a number repeats it that many times, also reversing it if the number is negative.

Standard ML (MLton), 51 bytes

fun$(a::b::r)=a::implode(rev(explode b)):: $r| $e=e

Try it online! Usage example: $ ["abc","def","ghi"] yields ["abc","fed","ghi"].

Explanation:

$ is a function recursing over a list of strings. It takes two strings a and b from the list, keeps the first unchanged and reverses the second by transforming the string into a list of characters (explode), reversing the list (rev), and turning it back into a string (implode).

APL (Dyalog), 12 bytes

⍳∘≢{⌽⍣⍺⊢⍵}¨⊢

Try it online!

Haskell, 26 bytes

zipWith($)l
l=id:reverse:l

Try it online! Usage example: zipWith($)l ["abc","def","ghi"] yields ["abc","fed","ghi"].

Explanation:

l is an infinite list of functions alternating between the identity function and the reverse function.

The main function zips l and the input list with the function application $, that is for an input ["abc", "def", "ghi"] we get [id$"abc", reverse$"def", id$"ghi"].

JavaScript (ES6), Firefox, 43 bytes

This version abuses the sort algorithm of Firefox. It generates garbage on Chrome and doesn't alter the strings at all on Edge.

a=>a.map((s,i)=>[...s].sort(_=>i&1).join``)

Test cases

let f =

a=>a.map((s,i)=>[...s].sort(_=>i&1).join``)

console.log(f(["Here are some lines","of text for you","to make a","boustrophedon"]))
console.log(f(["My boustrophedon"]))
console.log(f([]))

Or Try it online! (SpiderMonkey)


JavaScript (ES6), 45 bytes

a=>a.map(s=>(a^=1)?s:[...s].reverse().join``)

Test cases

let f =

a=>a.map(s=>(a^=1)?s:[...s].reverse().join``)

console.log(f(["Here are some lines","of text for you","to make a","boustrophedon"]))
console.log(f(["My boustrophedon"]))
console.log(f([]))

K (oK), 17 14 bytes

Solution:

@[;&2!!#x;|]x:

Try it online!

Example:

@[;&2!!#x;|]x:("this is";"my example";"of the";"solution")
("this is"
"elpmaxe ym"
"of the"
"noitulos")

Explanation:

Apply reverse at odd indices of the input list:

@[;&2!!#x;|]x: / the solution
            x: / store input as variable x
@[;      ; ]   / apply @[variable;indices;function] (projection)
          |    / reverse
       #x      / count (length) of x, e.g. 4
      !        / til, !4 => 0 1 2 3
    2!         / mod 2, 0 1 2 3 => 0 1 0 1       
   &           / where true, 0 1 0 1 => 1 3

Notes:

Alice, 13 bytes

M%/RM\
d&\tO/

Try it online!

Input via separate command-line arguments. Reverses the first line (and every other line after that).

Explanation

       At the beginning of each loop iteration there will always be zero
       on top of the stack (potentially as a string, but it will be
       converted to an integer implicitly once we need it).
M      Push the number of remaining command-line arguments, M.
%      Take the zero on top of the stack modulo M. This just gives zero as
       long as there are arguments left, otherwise this terminates the
       program due to the division by zero.
/      Switch to Ordinal mode.
t      Tail. Implicitly converts the zero to a string and splits off the
       last character. The purpose of this is to put an empty string below
       the zero, which increases the stack depth by one.
M      Retrieve the next command-line argument and push it as a string.
/      Switch back to Cardinal mode.
d      Push the stack depth, D.
&\R    Switch back to Ordinal mode and reverse the current line D times.
O      Print the (possibly reversed) line with a trailing linefeed.
\      Switch back to Cardinal mode.
       The instruction pointer loops around and the program starts over
       from the beginning.

Actually, 7 bytes

;r'R*♀ƒ

Explanation:

;r'R*♀ƒ
;r       range(len(input))
  'R*    repeat "R" n times for n in range
     ♀ƒ  call each string as Actually code with the corresponding input element as input (reverse each input string a number of times equal to its index)

Try it online!

Pyth, 6 bytes

.e@_Bb

Try it here!