https://github.com/reeli/data-structures-practice
https://github.com/reeli/data-structures-practice
Last synced: about 2 months 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 (over 1 year ago)
- Last Synced: 2025-01-29T07:46:44.112Z (4 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
```