https://github.com/jdegand/odin-project-linked-lists
Odin Project Javascript - Computer Science - Linked Lists
https://github.com/jdegand/odin-project-linked-lists
computer-science odin-project
Last synced: over 1 year ago
JSON representation
Odin Project Javascript - Computer Science - Linked Lists
- Host: GitHub
- URL: https://github.com/jdegand/odin-project-linked-lists
- Owner: jdegand
- Created: 2022-08-23T20:32:19.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-23T20:34:09.000Z (almost 4 years ago)
- Last Synced: 2025-01-22T09:13:05.653Z (over 1 year ago)
- Topics: computer-science, odin-project
- Language: JavaScript
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Odin Project Linked Lists
[Odin Project Directions](https://www.theodinproject.com/lessons/javascript-linked-lists)
## Thoughts
- Don't really use classes that much anymore
- Not much practical reason to focus my energy on algorithms and data structures
## Useful Resources
- [MDN Docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes) - Javascript Classes
- [Medium](https://medium.com/swlh/javascript-inserting-a-node-at-the-tail-of-a-linked-list-4eb742fb1a23) - node at the tail
- [AlgoList](https://www.algolist.net/Data_structures/Singly-linked_list/Removal) - Removing tail
- [Geeks for Geeks](https://www.geeksforgeeks.org/remove-last-node-of-the-linked-list/) - remove last node of the linked list
- [YouTube](https://www.youtube.com/playlist?list=PLC3y8-rFHvwjPxNAKvZpdnsr41E0fCMMP) - Codevolution Algnorithm and Data Structure playlist
- [YouTube](https://www.youtube.com/watch?v=gJjPWA8wpQg) - Linked List with Test Driven Development