Advent of code 2019/9
Ajax Direct

Answer 2121ms

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

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