in reply to Re: Eliminate exact duplicates from array of hashes
in thread Eliminate exact duplicates from array of hashes
The following data defeats the de-dup:
My second program gives the correct results, although it too could be defeated by sufficiently crafted data.my $null = qq{\x00}; my @test_data = ( { "a${null}1${null}b"=>"2" }, { a => 1, b => 2} );
"From there to here, from here to there, funny things are everywhere." -- Dr. Seuss
|
|---|