On Wednesday, 22 October 2014 at 07:38:01 UTC, bearophile wrote:
neal:
data.sort!q{ to!int(a[4]) > to!int(b[4]) };
This code fixes my problem! Thanks for the quick responses
guys. you rock!
That converts string->int many more than once for each string.
So if memory is not a problem, consid
On Wednesday, 22 October 2014 at 01:58:19 UTC, neal wrote:
On Wednesday, 22 October 2014 at 01:02:17 UTC, bearophile wrote:
neal:
Anybody have any suggestions?
Something like this, perhaps?
data.sort!q{ a[4] > b[4] };
Bye,
bearophile
Hmmm.. Im getting some interesting results here. So wh
On Wednesday, 22 October 2014 at 01:02:17 UTC, bearophile wrote:
neal:
Anybody have any suggestions?
Something like this, perhaps?
data.sort!q{ a[4] > b[4] };
Bye,
bearophile
Hmmm.. Im getting some interesting results here. So when i put
all of the populations in an area and used this cod
Just curious if this is possible. I have some data on different
countries that i have stored in a multidimensional array called
data[][]. What I want to do is sort data[][] by population which
happens to be stored in data[i][4] where i is the index to
iterate from country to country.
I would