Here's a solution in old Perl. Also works with however many strings you want
use warnings;
use strict;
use List::AllUtils qw( mesh part count_by pairs );
my @strings = ("SEQUENCES", "SEKUEAEES", "SEKUEAEES");
my $i = 0;
print join "",
map { $_->[0] . " " . ($_->[1] > 1 ? 'match' : 'mismatch') . " " . $_->[1] ."\n" }
pairs
count_by { $_ }
map { join "", @$_ }
part { int($i++/scalar @strings) }
&mesh( @{[ map { [ split // ] } @strings ]} )
;
And here for comparison, analogous code in Perl 6.
my @strings = "SEQUENCES", "SEKUEAEES", "SEKUEAEES";
([Z] @strings>>.comb)
.map({ .join })
.Bag
.map({ "{.key} { .value > 1 ?? 'match' !! 'mismatch' } {.value}\n" })
.join
.say;
Isn't that just pretty?