in reply to Re: Re: Finding missing elements in a sequence (code)
in thread Finding missing elements in a sequence (code)

Or else you might change what you put into the hash:

my %isthere = map { sprintf ('%05d',$_) => 0 } ($low..$high);
Assuming that all numbers you want to check are in the same format...

pike