diff options
| author | Paul Buetow <paul@buetow.org> | 2020-10-16 09:23:27 +0100 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2020-10-16 09:23:27 +0100 |
| commit | 2f700943480cf9767bf5090feeac626af742c1c8 (patch) | |
| tree | 313b7b795b3a84aaef92c4b39c174167b9aa95ea /sort/shuffle.go | |
| parent | da8837c515cbefadce9bdbb5e035398f89b283ec (diff) | |
migrate to gomodules
Diffstat (limited to 'sort/shuffle.go')
| -rw-r--r-- | sort/shuffle.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sort/shuffle.go b/sort/shuffle.go index 3611f7b..cf42a85 100644 --- a/sort/shuffle.go +++ b/sort/shuffle.go @@ -1,8 +1,9 @@ package sort import ( - "algorithms/ds" "math/rand" + + "github.com/snonux/algorithms/ds" ) func Shuffle(a ds.ArrayList) ds.ArrayList { |
