Advent of code 2015/3
Ajax Direct

Answer 35ms

Part 1 : 2081 Part 2 : 2341
// ==================================================
// > PART 1
// ==================================================
$solution_1 = xy([0, 0])->directions($input->chars()->map("direction"))->getVisitedCount();

// ==================================================
// > PART 2
// ==================================================
$santa = xy([0, 0]);
$robot = xy([0, 0]);

$input->chars()->chunk(2)->each(fn ($chunk) =>
    $santa->direction(direction($chunk[0])) && $robot->direction(direction($chunk[1]))
);

$santa->history = $santa->history->merge($robot->history);
$solution_2 = $santa->getVisitedCount();