another-guy/problem-solving-ts

View on GitHub
src/practice/0-directed-graph.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IDirectedGraph {
  nodes: string[];
  edges: { [ source: string ]: string[] };
}