Help for this page

Select Code to Download


  1. or download this
    push @{$Word{length$_}},$_ while (<>);
    
  2. or download this
    $len = length($_); 
    #let's say $len is 5
    ...
    # make a hash key called "5" with an empty array as the value
    push($hash{$len},$_);
    #use it as an array and push this five-letter word onto it.
    
  3. or download this
    ($_='jjjuuusssttt annootthhrer
         pppeeerrrlll haaaccckkeer')=~y/a-z//s;print;