What are some scenarios where you would choose one over the other when programming in AssemblyScript?
In my case I am trying to build a K-d tree from a list of tuples of floating point numbers. Because I need to rearrange and sort the incoming list of tuples, my first go-to is using Array<Array<f64>>
since I can easily add and remove data from it.[