sflitman,
Ok, I have one final contribution. This solution is still roughly O(N) where N is the number of names to check but it turns looking through the 206 unique squares into a hash lookup. It also has a couple of advantages over my previous solution. It only precalculates all solutions once and subsequently loads them from disk. Additionally, it displays all matching solutions, not just the first one found.
#!/usr/bin/perl use strict; use warnings; use Storable; my $db = 'msquare_solutions.db'; if (! -e $db) { my %possible; for my $x (5 .. 22) { for my $y (grep {$_ != $x} 1 .. int((25 - $x) / 2)) { my $max = 26 - $x - 2 * $y; my $min = $x - 2 * $y - 1; for my $z (grep {$_ != $x && $_ != $y} 1 .. ($min < $max ? + $min : $max)) { my @square = ( ($x + $y), ($x + $z), ($x - $y - $z), ($x - 2 * $y - $z), ($x), ($x + 2 * $y + $z) +, ($x + $y + $z), ($x - $z), ($x - $y) ); my @sol = map chr($_ + 64), @square; my $pow_iter = powerset(sort @sol); while (my @set = $pow_iter->()) { my $key = join '', @set; push @{$possible{$key}}, \@sol; } } } } store(\%possible, $db); } my $possible = retrieve($db); for (qw/PAUL JOHN MARTY SHEILA SMACK SUZY ELSA/) { my $key = join '', sort split //; if ($possible->{$key}) { for my $square (@{$possible->{$key}}) { print "$_ is contained within '@$square'\n"; } } else { print "No solution for $_\n"; } } sub powerset { # Choose any powerset iterator you want - ensure ascending order o +utput # I used my own from [id://394168] die "Implementation left as an exercise for the user"; }

Cheers - L~R


In reply to Re: magic squares by Limbic~Region
in thread magic squares by sflitman

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.