Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incomplete drawing display #9

Open
Bollie15 opened this issue Aug 20, 2021 · 0 comments
Open

Incomplete drawing display #9

Bollie15 opened this issue Aug 20, 2021 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@Bollie15
Copy link

Here is my code to solve "Unique Binary Search Trees" problem.

def fn(lo,hi):
    if lo >= hi:
        return 1
    tot = 0
    for i in range(lo, hi+1):
        tot += fn(lo,i-1)*fn(i+1,hi)
    return tot

When I call fn(1, 4), it can draw picture(< maximun recursion), it can't draw the recursion tree completely no matter how I zoom in the broswer.
image

So I think you can set a button to download this entire picture quickly. By the way, I always get the screenshot to get a picture.
😋

@brpapa brpapa self-assigned this Sep 7, 2021
@brpapa brpapa added the bug Something isn't working label Sep 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants