Skip to content

Commit

Permalink
fix for another input
Browse files Browse the repository at this point in the history
  • Loading branch information
rene-d committed Dec 11, 2024
1 parent abfca86 commit fee80b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2021/day17/day17.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fn solve(abs_min: i32, abs_max: i32, ord_min: i32, ord_max: i32) -> (i32, i32) {
let mut part1 = 0;
let mut part2 = 0;

for vx0 in 0..300 {
for vx0 in 0..400 {
for vy0 in -300..2000 {
let mut hit = false;
let mut y_max = 0;
Expand Down

0 comments on commit fee80b6

Please sign in to comment.