Advent of code 2019/5
Ajax Direct

Answer

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

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