Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
          map { [ split // ] }
          @ARGV ;
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print map { !$#$_ ? $_->[0].' ' : join '', $_->[0], shuffle(@{$_}[1 ..
    + $#$_-1]), $_->[$#$_], ' ' }
          map { [ split // ] }
          @ARGV ;