Add updated, highlighted output

This commit is contained in:
sharkdp 2020-09-14 11:16:19 +02:00 committed by David Peter
parent c9237cccab
commit 5efc0033a1

View File

@ -30,6 +30,6 @@
function quicksort_swap(data, i, j, temp) function quicksort_swap(data, i, j, temp)
{ {
 temp = data[i]  temp = data[i]
 data[i] = data[j]  data[i] = data[j]
 data[j] = temp  data[j] = temp
} }