Created
September 17, 2021 09:08
-
-
Save salva/82d97df007a375904cbc87b348d5589a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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