rlwhitcomb / utilities

Some of my personal utility programs
MIT License
2 stars 0 forks source link

New "natural sort order" is doing something weird #547

Open rlwhitcomb opened 1 year ago

rlwhitcomb commented 1 year ago

Even with "natorder-1.1.3.jar":

> s = [ "$", "#", "1", "0", "2" ]
s = ["$", "#", "1", "0", "2"] -> [ "$", "#", "1", "0", "2" ]
> sort s
sort s -> [ "0", "#", "$", "1", "2" ]
rlwhitcomb commented 1 year ago

Created issue at 616slayer616/natorder#16