Skip to content

Instantly share code, notes, and snippets.

@songz
Created October 20, 2017 01:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save songz/ebf8ade3c0dd4de5fecf669006628236 to your computer and use it in GitHub Desktop.
Save songz/ebf8ade3c0dd4de5fecf669006628236 to your computer and use it in GitHub Desktop.
const checkCirc = (cur, next=cur.next) => {
if(cur === next) return true;
if(!next || !next.next || !next.next.next) return false;
return checkCirc(cur.next, next.next.next);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment