Help for this page

Select Code to Download


  1. or download this
        if ($seen{$_}) {
            $seen{$_} += 1;
    ...
        else {
            $seen{$_} = 1;
        }
    
  2. or download this
        $seen{$_}++;