in reply to Re^2: Hashes, Arrays, Comparing Values to Elements
in thread Hashes, Arrays, Comparing Values to Elements
An XY problem is where you ask for help with an implementation detail where in fact you are trying to solve the wrong problem. For example, people very often ask how to generate names for variables at run time ($x0, $x1, $x2, ...) when they should be using an array ($x[0], $x[1], $x[2], ...). The answer to the question they ask (the X question) is "use symbolic names", but the answer to the question they should have asked (the Y question) is "use an array".
In one of your other replies there was a hint that you are doing this to speed things up. Most likely you should be describing the bigger problem and asking for help with speeding things up rather than focusing on this issue (that probably won't make the difference anyway).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
| A reply falls below the community's threshold of quality. You may see it by logging in. |