in reply to Re^3: Iterating through Two Arrays. Is there a better use of memory?
in thread Iterating through Two Arrays. Is there a better use of memory?

Almost definitely. The worst case scenario with hashes is if every hashed key collides. In that case, you may as well be using an array.

  • Comment on Re^4: Iterating through Two Arrays. Is there a better use of memory?