You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
325 B
Perl

#!/usr/bin/perl -w
use strict;
my @names = qw(
A E I
B F J
C G K
D H L
);
my %count;
foreach (@names) {
if (exists $count{$_}) {
$count{$_}++;
} else {
$count{$_} = 1;
}
}
foreach (keys %count) {
print "$_ \toccurs $count{$_} time(s)\n";
}