← Graph Exploration

Micro-Drill #67 — Add edge (undirected)

Graph Exploration Target: 5s

Undirected edges add both directions. Foundation for graph construction.

graph[u].append(v)
graph[v].append(u)

Type it from memory. Go.

Practice Problems

Related Coding Drills

← Micro #66 Micro #68 →