Help for this page

Select Code to Download


  1. or download this
    print join("\n",map(join(",",map{s/\.//;$_}@$_),@strings);
    #vs
    print join "\n",map{join",",map{s/\.//;$_}@$_}@strings;
    
  2. or download this
    my $count=scalar keys %hash;
    #or
    $count=scalar(keys(%hash));