RosettaCodeData/Task/Semordnilap/Perl/semordnilap.pl

8 lines
117 B
Perl
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
while (<>) {
chomp;
my $r = reverse;
$seen{$r}++ and $c++ < 5 and print "$_ $r\n" or $seen{$_}++;
}
print "$c\n"