Help for this page

Select Code to Download


  1. or download this
    my @file_line_contents = ...;
    
    my @line_lengths = map length($_), @file_line_contents;
    
  2. or download this
    my @file_line_contents = ...;
    
    my @line_lengths = map length($_), @file_line_contents[ 0 .. 44 ];