renamed module... for some reason

This commit is contained in:
alexchao26
2020-11-27 02:53:18 -05:00
parent b883a59052
commit 574bb4b9cc
58 changed files with 100 additions and 78 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"strconv"
"strings"
+1 -1
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"strconv"
"strings"
+1 -1
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"strings"
)
+1 -1
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"strings"
)
+1 -1
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"strconv"
"strings"
+1 -1
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"strconv"
"strings"
+2 -2
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"sort"
"strconv"
@@ -67,7 +67,7 @@ func main() {
}
// print ID * time (minute)
fmt.Printf("Sleepiest guard is %v, at minute %v.\nAoC answer: %v\n",
fmt.Printf("Sleepiest guard is %v, at minute %v.\ngithub.com/alexchao26/advent-of-code-go answer: %v\n",
IDOfSleepiestGuard,
bestMinute,
IDOfSleepiestGuard*bestMinute,
+2 -2
View File
@@ -1,7 +1,7 @@
package main
import (
"adventofcode/util"
"github.com/alexchao26/advent-of-code-go/util"
"fmt"
"sort"
"strconv"
@@ -59,7 +59,7 @@ func main() {
}
// print ID * time (minute)
fmt.Printf("Guard %v is asleep the most at minute %v.\nAoC answer: %v\n",
fmt.Printf("Guard %v is asleep the most at minute %v.\ngithub.com/alexchao26/advent-of-code-go answer: %v\n",
ID,
bestMinute,
ID*bestMinute,