diff options
Diffstat (limited to 'sort/parallelquick.go')
| -rw-r--r-- | sort/parallelquick.go | 3 |
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 { |
