From 4098a882ca0dfa1f785ecf5800cb1efcbcfe44a4 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 24 Aug 2020 14:17:34 +0100 Subject: elementary priority queue --- ds/arraylist.go | 1 + 1 file changed, 1 insertion(+) (limited to 'ds/arraylist.go') 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 { -- cgit v1.2.3