Let's bloat it up with the ultra-cool Quantum::Superpositions. Performing a comparision using all( any( list1 ), any( list2 ) ) returns a quantum superposition of the two lists, as a wierd sort of scalar. Take that scalar's eigenstate and you end up with a bare unique list of characters found only in both lists.

use strict; use warnings; use Quantum::Superpositions; my ($str1, $str2) = @ARGV; die "Usage: $0 <string1> <string2>" if ! defined $str2; print In_Common($str1, $str2), "\n"; sub In_Common { my ($str1, $str2) = @_; return join '', eigenstates( all( any( split( //, $str1 ) ), any( split( //, $str2 ) ) ) ); }

Of course this module is mostly a proof of concept, but it's a pretty cool concept.

By the way, I was just considering how one might modify the code to allow for any number of strings on the commandline. For example: ("abc", "bcd", "cde") would result in the output of "c". Or ("abcd", "bcde", "cdef", "defg") would output "d". I thought of a few strategies, but they all feel inelegant

Update: Ah, I got it. ...Here's a version of the preceeding script that allows for any number of strings on the command line:

use strict; use warnings; use Quantum::Superpositions; print In_Common( @ARGV ), "\n"; sub In_Common { return join '', eigenstates( all( map { any( split( //, $_ ) ) } @_ ) ); }

With this script, ("abcd", "bcde", "cdef", "defg") would return "d".


Dave


In reply to Re: Unique List of Common Characters Between Two Strings by davido
in thread Unique List of Common Characters Between Two Strings by Limbic~Region

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.