in reply to set theory w/hashes? arrays? done quickly?
I don't really know how to remove elements from the hash.%s1=('a'=>1, 'b'=>1, 'c'=>1); %s2=('a'=>1, 'c'=>1, 'd'=>1); print "Set 1 has: ", join(",",keys %s1), " Set 2 has: ", join(",", k +eys %s2),"\n"; %j=%s1; @j{keys %s2}=1; print "Union is ", join(",", keys %j), "\n";
%inter=%s1; @inter{%s2}=0;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)RE: Answer: set theory w/hashes? arrays? done quickly?
by tye (Sage) on Oct 04, 2000 at 04:11 UTC |