Wow that's wordy. Here's a shorter version; I borrowed (i.e. "ripped off") your initial configuration array:
#!/usr/bin/perl
use strict;
use warnings;
# Input, lines of the figure.
my @l = (
[qw [A B]],
[qw [A C F I]],
[qw [A D G J]],
[qw [A E]],
[qw [B C D E]],
[qw [B F H J]],
[qw [B I]],
[qw [E G H I]],
[qw [E J]],
[qw [I J]],
);
my %line = ();
my %flat = ();
for my $l (@l) {
for my $p (@$l) {
for my $q (@$l) {
$line{$p,$q}=1;
for my $r (@$l) {$flat{$p,$q,$r}=1}
}
}
}
my @p = 'A'..'J';
for my $p (@p) {
for my $q (@p) {
if ($q gt $p and $line{$p,$q}) {
print "[$p,$q,$_]\n"
for grep {$_ gt $q and
$line{$p,$_} and
$line{$q,$_} and
not $flat{$p,$q,$_}} @p;
}
}
}
None of that double-$, three-level-deep hashref stuff.
--
@/=map{[/./g]}qw/.h_nJ Xapou cets krht ele_ r_ra/;
map{y/X_/\n /;print}map{pop@$_}@/for@/
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.