Build graph from Edge List === ```javascript= function buildGraph(n, roads) { const a = Array(n).fill(1).map(x => Array(n).fill(false)); for (let road of roads) { const [i, j] = road; a[i][j] = a[j][i] = true; } return a; } ```