Piotr Czajkowski 3 년 전
부모
커밋
5a711be2ea
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  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 {