Advent of code 2019/5
Ajax Direct

Answer 2ms

Part 1 : 9775037 Part 2 : 15586959
// ==================================================
// > PART 1
// ==================================================
$solution_1 = (new Intcode($input, 1))->run();

// ==================================================
// > PART 2
// ==================================================
$solution_2 = (new Intcode($input, 5))->run();