summaryrefslogtreecommitdiff
path: root/sort/parallelquick.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2020-10-16 09:23:27 +0100
committerPaul Buetow <paul@buetow.org>2020-10-16 09:23:27 +0100
commit2f700943480cf9767bf5090feeac626af742c1c8 (patch)
tree313b7b795b3a84aaef92c4b39c174167b9aa95ea /sort/parallelquick.go
parentda8837c515cbefadce9bdbb5e035398f89b283ec (diff)
migrate to gomodules
Diffstat (limited to 'sort/parallelquick.go')
-rw-r--r--sort/parallelquick.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/sort/parallelquick.go b/sort/parallelquick.go
index 7533d35..195a2c8 100644
--- a/sort/parallelquick.go
+++ b/sort/parallelquick.go
@@ -1,8 +1,9 @@
package sort
import (
- "algorithms/ds"
"sync"
+
+ "github.com/snonux/algorithms/ds"
)
func ParallelQuick(a ds.ArrayList) ds.ArrayList {