Skip to content

Commit cd6c74a

Browse files
committed
cleanup
1 parent 98f3690 commit cd6c74a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Sources/Day03.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ struct Day03: AdventDay {
88

99
return data.ranges(of: search).map { match in
1010
let string = data[match].trimmingPrefix("mul(").trimmingCharacters(in: .punctuationCharacters)
11-
print(string)
1211
let numbers = string.split(
1312
separator: ","
1413
)
15-
print(numbers)
1614
return numbers.map {
1715
Int($0)
1816
}.compactMap {

0 commit comments

Comments
 (0)