Piotr Czajkowski 2 недель назад
Родитель
Сommit
e220686c46
1 измененных файлов с 0 добавлено и 5 удалено
  1. 0 5
      03/code.go

+ 0 - 5
03/code.go

@@ -72,11 +72,6 @@ func part2(lines []string) int {
 					endIndex = index
 				}
 
-				if startIndex > endIndex {
-					startIndex++
-					continue
-				}
-
 				result += getResults(line[startIndex:endIndex])
 
 				line = line[endIndex:]