diff options
Diffstat (limited to 'ds')
| -rw-r--r-- | ds/arraylist.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ds/arraylist.go b/ds/arraylist.go index e0e4536..feee14e 100644 --- a/ds/arraylist.go +++ b/ds/arraylist.go @@ -6,6 +6,7 @@ import ( "strings" ) +// Idea: Once Go got generics use generics here instead of hard coded int type type ArrayList []int func NewArrayList(l int) ArrayList { |
