Re: Sort on linkedlists with double values (inside main list)
"M.v.Gulik" <[email protected]>
| Newsgroups | gmane.comp.lang.groovy.user |
|---|---|
| Message-ID | <CAOSpiuHuPHosGizsZt7_pKUrkCR1-O2stdSSP6=Jhf-JJbPyMw@mail.gmail.com> |
On Mon, 20 May 2024 at 15:40, Paul King <[email protected]> wrote: > What sort result are you trying to achieve? There should be no need to > perform any recursion. > Main target was reordering some set of randomly ordered x,y coordinates into (*for example**) a *x,y*(*left to right, top to bottom*) order (**:where any of the actual sort directions could be easily flipped*). So far "**.sort{[it.y, it.x]}*" seems the best and easiest way to do this (*despite its Float/Double caveat*).