diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2020-08-08 14:32:37 +0100 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2020-08-08 14:32:37 +0100 |
| commit | c870dae11a5ec088800a35665d6ac1baa3abef3a (patch) | |
| tree | 901714ce898921077efd0e4f903175a390b6cebf /sort/sort_test.go | |
| parent | 0db964a3b8ba57b3677d9d201870ee5ab15b6a30 (diff) | |
refactor quicksort
Diffstat (limited to 'sort/sort_test.go')
| -rw-r--r-- | sort/sort_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sort/sort_test.go b/sort/sort_test.go index 6f6bcc2..f350b46 100644 --- a/sort/sort_test.go +++ b/sort/sort_test.go @@ -11,8 +11,8 @@ var benchResult ds.ArrayList var benchResultInt []int const minLength int = 1 -const maxLength int = 100000 -const maxSlowLength int = 100000 +const maxLength int = 1000 +const maxSlowLength int = 1000 var arrayListCache map[string]ds.ArrayList |
