Y
Hacker News
new
|
ask
|
show
|
jobs
by
zRedShift
1302 days ago
Your go uses `pdqsort` to sort 4 byte ints from 0 to 100, while rust uses a stable sort (`sort_unstable` is equivalent to `pdqsort`) on single byte integers from 0 to 255. Hardly a fair comparison.