Skip to content

Commit f58b0b9

Browse files
README update
1 parent 857aa59 commit f58b0b9

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Diff for: README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# Recursion Visualizer
22

33
Ever wondered what the recursive structure of your Leetcode algorithm looks like?
4-
Then you are in luck! This project allows you to see recursion in your code.
4+
Then you are in luck! This project allows you to see recursion in your code.
5+
Whoa! What does that mean? Basically, write a single recursive function, and this app will show you step by step how your algorithm reached it's solution. And at each stage of the recursion, you're able to navigate the call graph and see the return output value at each stage. How does that sound?
6+
7+
## Try it now!
8+
Visit https://recursion-visualizer.web.app to try RIGHT NOW!
9+
10+
## Build it locally
11+
Ok, so what you need is Node.js v12.18.3, Python 3.8.5, and a lot of patience. Wait, no, I meant you need Flask. So, just install everything in requirements.txt in the remoteCodeRunner, run npm install in the react-frontend directory, start the Flask server, and you should be good! (also, you need to adjust your localhost flask URL inside the react directory.)
12+
13+
## DEMO
14+
Visit: https://www.youtube.com/watch?v=Zb0EJkHHxgo

Diff for: react-frontend/src/components/placeholder.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default function OutlinedCard() {
8282
<iframe
8383
width="560"
8484
height="315"
85-
src="https://www.youtube.com/embed/-7rJv-yiTzc"
85+
src="https://www.youtube.com/embed/Zb0EJkHHxgo"
8686
frameBorder="0"
8787
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
8888
allowFullScreen

0 commit comments

Comments
 (0)