Phix:Sort Columns Not Working Like Expected
- Posted by euphoric (admin) Jun 24, 2020
- 1853 views
-- test_sort_columns.ex sequence table = {{5,4,3,2,1},{'A','B','C','D','E'}} ?sort_columns(table,{1})
Result:
{{5,4,3,2,1},{65,66,67,68,69}}
What I expected:
{{1,2,3,4,5},{69,68,67,66,65}}