v1.0.0 – Initial Release
✨ v1.0.0 – Initial Release
This release marks the first stable version of the algo-practice project. It includes core algorithm implementations and a foundational data structure, built as part of The Odin Project's curriculum.
📁 Included:
-
fibonacci/fibs.js– Iterative Fibonacci generatorfibsRec.js– Recursive Fibonacci generator
-
merge-sort/mergeSort.js– Recursive Merge Sort with custom merge logic
-
linked-list/Node.js– Node classLinkedList.js– Core singly linked list implementationtest.js– Test cases for linked list methodsREADME.md– Method documentation
-
README.md– Clean, structured root-level documentation
📚 Concepts Covered:
- Iterative vs Recursive logic
- Divide and conquer algorithm design
- Singly linked list structure & traversal
- Modular code organization
- Test-driven problem solving
This version is stable and ready for future enhancements such as insertAt(), removeAt(), stack/queue support, or more algorithm additions.