Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            print join '', values %hash, "\n";
        }
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
        $result = ($prime * $input + $seed) % $max;
        print $arr[$result], " ";
    }