Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saif-gitreps/recursion-visualizer
A Javascript project that visualizes the backtracking and bruteforce process that occurs in the Recursion stack, inspired by a Leetcode problem.
https://github.com/saif-gitreps/recursion-visualizer
backtracking-algorithm css html javascript recursion
Last synced: 7 days ago
JSON representation
A Javascript project that visualizes the backtracking and bruteforce process that occurs in the Recursion stack, inspired by a Leetcode problem.
- Host: GitHub
- URL: https://github.com/saif-gitreps/recursion-visualizer
- Owner: saif-gitreps
- Created: 2023-09-29T08:06:00.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-14T11:33:02.000Z (about 1 year ago)
- Last Synced: 2024-12-22T10:22:59.169Z (2 months ago)
- Topics: backtracking-algorithm, css, html, javascript, recursion
- Language: JavaScript
- Homepage: https://amazing-taffy-810899.netlify.app/
- Size: 34.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Recursion-visualizer
A Javascript project that visualizes backtracking process that occurs in the recursion stack.
The idea originated from the Leetcode problem "Unique Path".
The problem states that we have to find the number of ways/paths a Robot placed at the top-left corner of an N x N grid can move to reach the bottom-right corner.
The problem is solved using Dynamic Programming.The bruteforce approach however involves an interesting pattern that simulates the actual motion of the Robot, Which in theory isnt the optimal solution but the backtracking path is an interesting visual to observe.
The project is deployed on Netlify.
-link: https://amazing-taffy-810899.netlify.app/