Piotr Czajkowski 3 years ago
parent
commit
5a711be2ea
1 changed files with 0 additions and 6 deletions
  1. 0 6
      day23/day23.go

+ 0 - 6
day23/day23.go

@@ -98,12 +98,6 @@ func getSequence(sequence []int, min, max int) []int {
 			}
 		}
 
-		for j, _ := range sequence {
-			if j > index && j < index+4 {
-				sequence[j] = 0
-			}
-		}
-
 		destination := sequence[index] - 1
 		for {
 			if destination < min {