I have a very weird problem, And I want to do it extremely efficient way. In my app milliseconds count..
I have four ArrayLists
of Strings
title desc, price, usageArray;
The first three contains data where as usageArray contains data and "NONE" at some places e.g
UsageArray
a b c NONE D NONE
etc
I want to remove the "NONE" From usageArray in such a way that e.g let the index of First NONE is 3 then the third element in title, desc and price is also remove.
How can I do this in extremely efficient way