Help for this page

Select Code to Download


  1. or download this
    $l1 = ( split //, $w1 )[ $intersect[ 0 ] - 1 ];
    
  2. or download this
    $l1 = substr $w1, $intersect[ 0 ] - 1, 1;
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
        print "Any of\n", map "\t$_\n", @{ $word1{ $letter } };
        print "combined with any of\n", map "\t$_\n", @{ $word2{ $letter }
    + };
    }