function findAntinodes(antennae, displacements = [2]) {
const antinodes = [];
const inBounds = ([r, c]) =>
r >= 0 && r < antennae.nRows && c >= 0 && c < antennae.nCols;
antennae.nodes.forEach((locations) => {
AOC.select(locations).forEach(([n, others]) => {
others.forEach((other) => {
const v = [other.row - n.row, other.col - n.col];
antinodes.push(
AOC.mapWhile(
(d) => [n.row + d * v[0], n.col + d * v[1]],
inBounds,
displacements
)
);
});
});
});
return antinodes.flat();
}