Advent of code 2016/6
Ajax Direct

Answer 64ms

Part 1 : mlncjgdg Part 2 : bipjaytb
// ==================================================
// > PART 1
// ==================================================
$solution_1 = grid($input)->columns()->map(fn ($col) => $col->mostCommon())->join();

// ==================================================
// > PART 2
// ==================================================
$solution_2 = grid($input)->columns()->map(fn ($col) => $col->leastCommon())->join();