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

Lesson 2: findLoop - Take in a linkedList, return true if the list loops on itself #48

Open
seemcat opened this issue Oct 17, 2017 · 0 comments

Comments

@seemcat
Copy link

seemcat commented Oct 17, 2017

Inputs:

const b = { val: 2};
const a = { val: 1, next: b };
test(a, false);
test(b, false);
@seemcat seemcat changed the title Lesson 2: findLoop - Take in a linkedList, return if the list loops on itself Lesson 2: findLoop - Take in a linkedList, return true if the list loops on itself Oct 19, 2017
allopez7 pushed a commit to allopez7/algorithm that referenced this issue Oct 20, 2017
allopez7 pushed a commit to allopez7/algorithm that referenced this issue Oct 20, 2017
allopez7 pushed a commit to allopez7/algorithm that referenced this issue Oct 21, 2017
allopez7 pushed a commit to allopez7/algorithm that referenced this issue Oct 26, 2017
allopez7 added a commit to allopez7/algorithm that referenced this issue Oct 26, 2017
Solve garageScript#48, Lesson 2: findLoop - Take in a linkedList, return true if the list loops on itself
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant