From 921cc86c42b7ef794c40003360f9906ae1a6ca9a Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Sun, 18 Aug 2019 22:01:36 -0600 Subject: [PATCH] Remove unused function --- cmd/transpile/category.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/cmd/transpile/category.go b/cmd/transpile/category.go index d2be4c7..d48289c 100644 --- a/cmd/transpile/category.go +++ b/cmd/transpile/category.go @@ -21,16 +21,6 @@ type PuzzleEntry struct { Puzzle Puzzle } - -func HashHex(input ...string) (string) { - hasher := fnv.New64() - for _, s := range input { - fmt.Fprintln(hasher, s) - } - return hex.EncodeToString(hasher.Sum(nil)) -} - - func PrngOfStrings(input ...string) (*rand.Rand) { hasher := fnv.New64() for _, s := range input {