Piotr Czajkowski vor 3 Tagen
Ursprung
Commit
5a370f6b14
2 geänderte Dateien mit 13 neuen und 3 gelöschten Zeilen
  1. 13 3
      19/code.go
  2. 0 0
      19/input

+ 13 - 3
19/code.go

@@ -36,12 +36,21 @@ func readInput(file *os.File) ([][]string, []string) {
 	return patterns, towels
 }
 
-func checkTowel(towel string, index int, patterns [][]string) bool {
+func patternAndIndex(pattern string, index int) string {
+	return fmt.Sprintf("%s_%d", pattern, index)
+}
+
+func checkTowel(towel string, index int, patterns [][]string, checked map[string]bool) bool {
 	if index >= len(towel) {
 		return true
 	}
 
 	for _, pattern := range patterns[towel[index]-delta] {
+		if checked[patternAndIndex(pattern, index)] {
+			continue
+		}
+
+		checked[patternAndIndex(pattern, index)] = true
 		patternMatch := true
 		for i := range pattern {
 			if index+i >= len(towel) || pattern[i] != towel[index+i] {
@@ -50,7 +59,7 @@ func checkTowel(towel string, index int, patterns [][]string) bool {
 			}
 		}
 
-		if patternMatch && checkTowel(towel, index+len(pattern), patterns) {
+		if patternMatch && checkTowel(towel, index+len(pattern), patterns, checked) {
 			return true
 		}
 	}
@@ -61,7 +70,8 @@ func checkTowel(towel string, index int, patterns [][]string) bool {
 func part1(patterns [][]string, towels []string) int {
 	var count int
 	for _, towel := range towels {
-		if checkTowel(towel, 0, patterns) {
+		checked := make(map[string]bool)
+		if checkTowel(towel, 0, patterns, checked) {
 			count++
 		}
 	}

Datei-Diff unterdrückt, da er zu groß ist
+ 0 - 0
19/input


Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden.