A simple visualization of recursion using HTML, CSS, and JavaScript.
This project demonstrates how recursive function calls work — by drawing nested boxes or steps dynamically in the browser.
👉 Live Demo: https://ziadhashem.github.io/Recursive-algorithm/
- Takes a number
n
as input - Recursively calls a function until the base case is reached
- Displays each recursive call as a visual element on the page (e.g., boxes or blocks)
- Helps beginners understand the concept of recursion in programming