소스 검색

Not needed

Piotr Czajkowski 3 달 전
부모
커밋
91128f7fed
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      22/code.go

+ 0 - 3
22/code.go

@@ -76,7 +76,6 @@ func sequenceKey(sequence []int) string {
 }
 
 func highestSum(allLastDigits [][]int, iterations int) int {
-	var allSequences [][]int
 	sums := make(map[string]int)
 	for _, lastDigits := range allLastDigits {
 		var sequence []int
@@ -97,8 +96,6 @@ func highestSum(allLastDigits [][]int, iterations int) int {
 				}
 			}
 		}
-
-		allSequences = append(allSequences, sequence)
 	}
 
 	var highest int