http://www.perlmonks.org?node_id=697564


in reply to Re^2: Corrupt Data?
in thread Corrupt Data?

But he is accessing it positionally (with the for loop) while pushing onto it and shifting it at the same time. That means he's going to end up running his transformation on output data, plus throwing away data that should have been transformed, etc.

Replies are listed 'Best First'.
Re^4: Corrupt Data?
by ikegami (Patriarch) on Jul 14, 2008 at 20:49 UTC
    Yes, but the problem is that how he's accessing the array. If he had been using $array[0] instead of $array[$j], he would have been fine (aside other issues such as variable reuse).