Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jakobmoellerdev/graph

A simple graph problem for anyone to solve
https://github.com/jakobmoellerdev/graph

Last synced: about 2 months ago
JSON representation

A simple graph problem for anyone to solve

Awesome Lists containing this project

README

        

# A simple graph problem for anyone to solve

## Problem A
Implement a simple graph from a predetermined structure. Fill in the gaps, and make the tests succeed.

## Problem B
Optimize the graph such that GetIncomingEdges is O(n) time complexity. Feel free to change the graph structure

## Problem C (Optional)
Implement BFS on the graph by preference.