From e1657268332e98339971035ac1366bdb2bb7d139 Mon Sep 17 00:00:00 2001 From: David Ashby Date: Tue, 14 Dec 2021 10:12:10 -0500 Subject: [PATCH] remove extra function --- 14/main.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/14/main.go b/14/main.go index ce71d2a..0f519f0 100644 --- a/14/main.go +++ b/14/main.go @@ -4,16 +4,10 @@ import ( "bufio" "fmt" "os" - "strconv" "strings" "time" ) -func mustAtoi(line string) int { - i, _ := strconv.Atoi(line) - return i -} - func main() { start := time.Now() partOne()