One simple approach is to determine the highest key. Then loop over every possible key adding '-' if there is no value for that key. I have a feeling there may be a better way to do this for large datasets but on a small simple scale it works.
use strict;
use warnings;
my %data = (
1 => 'A',
2 => 'B',
3 => 'C',
6 => 'D',
9 => 'E',
10 => 'F',
);
my $max_key = 0;
for ( keys %data )
{
$max_key = $_ if $_ > $max_key;
}
for ( 1 .. $max_key )
{
$data{$_} = '-' unless $data{$_};
}
print "$_ : $data{$_}\n" for keys %data;
#Outputs
6 : D
3 : C
7 : -
9 : E
2 : B
8 : -
1 : A
4 : -
10 : F
5 : -
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.