On Mon, Apr 11, 2016 at 4:00 PM, Anonymous <[email protected]> wrote: > If I have a vector of data which I don't intend to ever change, should I > represent it as a tuple rather than a 1d array? Is there any benefit above > and beyond protecting against mutability? Is it more efficient?
Unless you only have a very small number of element, (maybe ~10), you should just use an array.
