recursion-tree-visualizer
recursion-tree-visualizer copied to clipboard
🌳 Input the source code of any recursive function in javascript, python or golang and visualize its recursion tree
For example, when I use a string "boy", I get an error `boy not defined`. It is interpreting "boy" as a variable instead of a string. But if I escape...
Old Bug:https://github.com/brpapa/recursion-tree-visualizer/issues/8#issue-974653096 Here is my code: ```python from functools import lru_cache matchsticks =[5,5,5,5,16,4,4,4,4,4,3,3,3,3,4] width=18 @lru_cache(None) def fn(state,currEdgeWidth): if state == (1 > i) & 1) and matchsticks[i] + currEdgeWidth
Writing this in a hurry, so cannot be sure, but I noticed that return values were wrong for the following program. (I'll update as soon as I can). Find a...
Here is my code to solve "Unique Binary Search Trees" problem. ```python def fn(lo,hi): if lo >= hi: return 1 tot = 0 for i in range(lo, hi+1): tot +=...
Here is my code: ```python coins = [25,20,10,5,1] def fn(i, m): if 0 == m: return 0 if len(coins) == i: return 0x3f3f3f3f ans = 0x3f3f3f3f for k in range(m...
https://recursion.now.sh/ I found this on your website. It's a great little tool for visual learners. However, I was curious if there is a way to slow down the visualization or...
Can we please get this amazing project to accept solutions in Java? Nonetheless, great work on the project buddy.
The input field for global variables is not working. Pease fix it.
It would be great if there was a switch that would toggle some sort of "pan mode" allowing users to pan/zoom into the recursion tree, as large recursion trees have...
Hello @brpapa, First, I want to say that your project is fantastic! I've been using it extensively, and it’s been extremely valuable. I’d like to propose a feature that could...