function wilson(grid, rGen) {
const start = grid.randomCell(rGen);
const visited = Array.from(Array(grid.nRows), (_) =>
Array(grid.nCols).fill(false)
);
visited[start.row][start.col] = true;
let unvisited = [...grid.eachCell()].filter(
(cell) => !visited[cell.row][cell.col]
);
while (unvisited.length > 0) {
let cell = randSample(unvisited, rGen);
let path = [cell];
while (!visited[cell.row][cell.col]) {
cell = randSample(cell.adjacent.filter(Boolean), rGen);
const indexInPath = path.findIndex(
(p) => p.row === cell.row && p.col === cell.col
);
if (indexInPath === -1) {
path.push(cell);
} else {
path = path.slice(0, indexInPath + 1);
}
}
for (let i = 0; i < path.length - 1; i++) {
path[i].link(path[i + 1]);
visited[path[i].row][path[i].col] = true;
}
unvisited = unvisited.filter((cell) => !visited[cell.row][cell.col]);
}
return grid;
}