Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/reeli/data-structures-practice


https://github.com/reeli/data-structures-practice

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

```mermaid
flowchart TB
node0("Node 0
(head 0)")
node1(Node 1)
node2("Node 2")
null(null)

node0 --next--> node1
node1 --next--> node2
node2 --next--> null
```