remove useless for loop
This commit is contained in:
@@ -74,7 +74,6 @@ func partTwo() {
|
||||
|
||||
t := float64(0)
|
||||
offset := buses[0].route
|
||||
for {
|
||||
loop:
|
||||
t = t + offset
|
||||
offset = 1
|
||||
@@ -85,8 +84,6 @@ func partTwo() {
|
||||
offset = offset * buses[i].route
|
||||
}
|
||||
}
|
||||
break
|
||||
}
|
||||
|
||||
fmt.Println(int(t))
|
||||
}
|
||||
|
Reference in New Issue
Block a user