Re: How to create adjacency list in Nim?

2020-03-02 Thread e
There are many ways to keep an adjacency list. The method I chose for a in a 
[quickie graph 
library](https://github.com/dcurrie/AdventOfCode/blob/master/Utils/dgraph.nim#L13-L14)
 was to use hash sets for in- and out- edges from a graph node.


How to create adjacency list in Nim?

2020-03-02 Thread hany33
How to create adjacency list in Nim?