function guardPositions(lab) {
const positions = [];
let [[row, col], dir] = [lab.start, lab.dir];
while (true) {
positions.push([row, col, dir]);
const [nextR, nextC] = [row + dirs[dir][0], col + dirs[dir][1]];
if (nextR < 0 || nextR >= lab.nRows || nextC < 0 || nextC >= lab.nCols) {
return positions;
}
if (lab.grid[nextR][nextC] === "#") {
dir = (dir + 1) % 4;
}
[row, col] = [row + dirs[dir][0], col + dirs[dir][1]];
}
}