The first numeric sort is 'numerifying' the strings and stripping the leading zeroes which messes up the rest of the routine.
I am not if that is right, at least not in the simple sense of what you say. See:
sub find_holes {
my @list = @{ shift() };
@list = sort { $a <=> $b } @list;
my $low = $list[0];
my $high = $list[-1];
my %isthere = map { $_ => 0 } ($low..$high);
print "@{[sort keys %isthere]}\n\n";
print "@list\n\n";
$isthere{$_} = "yes" for map {$_+0} @list;
my @vacancies = grep { not $isthere{$_} } sort keys %isthere;
return \@vacancies;
}
my @issues = @{ [
'00001',
'00002',
'00003',
'00004',
# '00005',
'00006',
'00007',
'00008',
'00009',
#...
] };
print join("\n", @{ find_holes( \@issues ) });
Prints:
d:\tmp\try>perl try.pl
perl try.pl
1 2 3 4 5 6 7 8 9
00001 00002 00003 00004 00006 00007 00008 00009
5
What the sort probably does is to fill the number entry in the glob of the entries of @list. But why does the ".." operator use the number slot, while the hash access code and print use the string slot?
Christian Lemburg
Brainbench MVP for Perl
http://www.brainbench.com
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, 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
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.
|
|