in reply to Re: Finding largest common subset in lists?
in thread Finding largest common subset in lists?
Update: For @a = qw(a b c); @b = qw(a b c) it prints b. For two element lists it does not work at all.
Update: Changed the code to:
It does not have the problem with cutting the first and last elements of the list, but still for @a = qw(a b c); @b = qw(a x b c) it prints a.my $str = join(" ", @a) . "&" . join(" ", @b); if ($str =~ /(?:\b\w+\b\s*)*? ((?:\b\w+\b\s*)+) (?:\s*\b\w+\b\s*)*? & (?:\b\w+\b\s*)*? \1 (?:\s*\b\w+\b)*?/x) { my $result = $1; $result =~ s/\s*$//; print "found '$result'\n"; }
|
|---|