From 2f700943480cf9767bf5090feeac626af742c1c8 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 16 Oct 2020 09:23:27 +0100 Subject: migrate to gomodules --- sort/parallelquick.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sort/parallelquick.go') 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 { -- cgit v1.2.3