Remove unused function

This commit is contained in:
Neale Pickett 2019-08-18 22:01:36 -06:00
parent edfa895b58
commit 921cc86c42
1 changed files with 0 additions and 10 deletions

View File

@ -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 {