Help for this page
#!/usr/bin/perl use strict; use warnings; ... foreach (@good_strings) { print "$_ failed\n" if not /(.)(?!\1|$)/; }