Piotr Czajkowski 2 週間 前
コミット
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:]