Here's pm_2d_comb_long.pl - a longer, annotated version of pm_2d_comb.pl:
#!/usr/bin/env perl
use 5.010;
use strict;
use warnings;
# Original code
#say for glob '{' . join('}-{' => map { join ',' => split } <DATA>) .
+'}';
# Read raw data
# @data_lines will be: ('1 2', '3 4 5', '6 7', '8 9')
my @data_lines = <DATA>;
# Convert spaces to commas by splitting each string on whitespace
# to form a list whose elements are joined with commas
# @spaces_to_commas will be: ('1,2', '3,4,5', '6,7', '8,9')
my @spaces_to_commas = map { join ',' => split } @data_lines;
# Join those strings with '}-{'
# $brace_dash_brace_string will be '1,2}-{3,4,5}-{6,7}-{8,9'
my $brace_dash_brace_string = join('}-{' => @spaces_to_commas);
# Add opening and closing braces
# $glob_string will be: '{1,2}-{3,4,5}-{6,7}-{8,9}'
my $glob_string = '{' . $brace_dash_brace_string . '}';
# Finally glob '{1,2}-{3,4,5}-{6,7}-{8,9}'
say for glob $glob_string;
__DATA__
1 2
3 4 5
6 7
8 9
Outputs:
$ pm_2d_comb_long.pl
1-3-6-8
1-3-6-9
1-3-7-8
1-3-7-9
1-4-6-8
1-4-6-9
1-4-7-8
1-4-7-9
1-5-6-8
1-5-6-9
1-5-7-8
1-5-7-9
2-3-6-8
2-3-6-9
2-3-7-8
2-3-7-9
2-4-6-8
2-4-6-9
2-4-7-8
2-4-7-9
2-5-6-8
2-5-6-9
2-5-7-8
2-5-7-9
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|