Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl -w
use strict;
while(<>) {
chomp;
print "$1\n" if(/\b(\w*(\w)\w*\2\w*)\b/);
}
#!/usr/bin/perl -w
use strict;
while(<>) {
chomp;
my @words = split;
my $found = 0;
foreach my $word (@words) {
if($word =~ /\b(\w*(\w)\w*\2\w*)\b/) {
print "$1 ";
$found++;
}
}
print "\n" if($found);
}