in reply to Re: Re: Finding missing elements in a sequence (code)
in thread Finding missing elements in a sequence (code)
Assuming that all numbers you want to check are in the same format...my %isthere = map { sprintf ('%05d',$_) => 0 } ($low..$high);
pike
|
|---|