Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reeli/data-structures-practice
https://github.com/reeli/data-structures-practice
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/reeli/data-structures-practice
- Owner: reeli
- Created: 2019-08-15T14:55:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T17:36:17.000Z (about 1 year ago)
- Last Synced: 2024-05-27T21:17:12.340Z (7 months ago)
- Language: TypeScript
- Size: 59.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```