Piotr Czajkowski hai 2 semanas
pai
achega
2888b37dd5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      03/code.go

+ 1 - 1
03/code.go

@@ -58,11 +58,11 @@ func part2(lines []string) int {
 		for reading {
 			if multiply {
 				index := strings.Index(line, "don't()")
-				multiply = false
 				if index == -1 {
 					endIndex = len(line)
 					reading = false
 				} else {
+					multiply = false
 					endIndex = index
 				}