We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
遍历完长链表直接就返回了肯定不对啊
The text was updated successfully, but these errors were encountered:
l1 = headA l2 = headB while l1 != l2: l1 = l1.next if l1 else headB l2 = l2.next if l2 else headA return l1
Sorry, something went wrong.
No branches or pull requests
遍历完长链表直接就返回了肯定不对啊
The text was updated successfully, but these errors were encountered: