in reply to Matching array elements not in another array
After
my %available_things= map { $_,1} @available_things; [download]
your search is a simple lookup:
@not_available_requested_things = map { $_ if not $available_things{$_ +} } @requested_things; [download]