diff options
Diffstat (limited to 'go/parabola_hackers/util.go')
-rw-r--r-- | go/parabola_hackers/util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/parabola_hackers/util.go b/go/parabola_hackers/util.go index 9a241db..8dd9374 100644 --- a/go/parabola_hackers/util.go +++ b/go/parabola_hackers/util.go @@ -36,7 +36,7 @@ func RandomString(alphabet string, n uint) (str string, err error) { return } -func Set2list(set map[string]bool) []string { +func set2list(set map[string]bool) []string { list := make([]string, len(set)) i := uint(0) for item, _ := range set { |