Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Finding gaps in date ranges

by perlmonkey (Hermit)
on May 11, 2001 at 05:47 UTC ( [id://79623]=note: print w/replies, xml ) Need Help??


in reply to Finding gaps in date ranges

Instead of trying to find out what you are missing, it is a lot easier (and faster) to just exclude what you have.
sub find_gaps { my $dates = shift; my @dates = sort{ $a->[0] <=> $b->[0] || $a->[1] <=> $b->[1] } map{[substr($_, 0, 4), substr($_, 5)]} keys %$dates; my( $minY,$minM,$maxY,$maxM ) = (@{$dates[0]}, @{$dates[-1]}); my @gaps; for my $y ($minY .. $maxY) { exists $dates->{"$y-$_"} ? next : push @gaps, "$y-$_" for ($minY == $y ? $minM : 1) .. ($maxY == $y ? $maxM : 12); } return \@gaps; }
This code sorts to finds the min and max of the date range, then loops over the entire range in order looking to see if we have that date already. If we dont have the date then keep it to return.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://79623]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-25 15:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found