Skip to content

Instantly share code, notes, and snippets.

@salva
Created September 17, 2021 09:08
Show Gist options
  • Save salva/82d97df007a375904cbc87b348d5589a to your computer and use it in GitHub Desktop.
Save salva/82d97df007a375904cbc87b348d5589a to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
use strict;
use warnings;
my $n = shift;
my $start = int($n / 2 + 1);
my @play = (($start..$n), (1..($start - 1)));
while ($n > 1) {
shift @play;
push @play, shift @play if $n-- & 1;
}
print "@play\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment