Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jakobmoellerdev/graph
- Owner: jakobmoellerdev
- Created: 2024-07-09T07:10:37.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-09T07:31:13.000Z (6 months ago)
- Last Synced: 2024-07-09T09:57:17.508Z (6 months ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.