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
1 changed files with 2 additions and 2 deletions

View File

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