GraphMap type
A graph as adjacency lists: each vertex mapped to the vertices it points at.
Signature:
export type GraphMap<T> = Map<T, T[]>;
A graph as adjacency lists: each vertex mapped to the vertices it points at.
Signature:
export type GraphMap<T> = Map<T, T[]>;