Skip to content

v1.0.0 – Initial Release

Choose a tag to compare

@singharyan006 singharyan006 released this 12 Jul 18:58
· 9 commits to main since this release
0248b04

✨ 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 generator
    • fibsRec.js – Recursive Fibonacci generator
  • merge-sort/

    • mergeSort.js – Recursive Merge Sort with custom merge logic
  • linked-list/

    • Node.js – Node class
    • LinkedList.js – Core singly linked list implementation
    • test.js – Test cases for linked list methods
    • README.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.