Remove not needed line
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -28,8 +28,7 @@ def part_2(input):
|
|||||||
'x=', '').replace('y=', '').split(', ')
|
'x=', '').replace('y=', '').split(', ')
|
||||||
x_min, x_max = [int(c) for c in x.split('..')]
|
x_min, x_max = [int(c) for c in x.split('..')]
|
||||||
y_min, y_max = [int(c) for c in y.split('..')]
|
y_min, y_max = [int(c) for c in y.split('..')]
|
||||||
vx_0 = 0
|
for vx_0 in range(x_max):
|
||||||
for vx_0 in range(x_max + 1):
|
|
||||||
for vy_0 in range(y_min, -y_min):
|
for vy_0 in range(y_min, -y_min):
|
||||||
vx = vx_0
|
vx = vx_0
|
||||||
vy = vy_0
|
vy = vy_0
|
||||||
|
|||||||
Reference in New Issue
Block a user