Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
        $xor ^= $val{$_};
        say $loop if !$xor;
    }
    
  2. or download this
    9
    36
    45
    72
    81
    
  3. or download this
    my %val = do{my $cnt = 0; map {$_ => 2**(++$cnt)} split //, 'Aabcdefg'
    +};