in reply to Re^2: How to remove duplicates from a large set of keys
in thread How to remove duplicates from a large set of keys
#!/usr/bin/perl -w use strict; my %lookupTable; for (my $i=0; $i<=2000000; $i++) { if (!$lookupTable{$i}) { $lookupTable{$i} = 1; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to remove duplicates from a large set of keys
by FitTrend (Pilgrim) on Feb 10, 2005 at 13:54 UTC |