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

question about 4sum problem (python code) #2

Open
feng-1985 opened this issue Mar 7, 2019 · 0 comments
Open

question about 4sum problem (python code) #2

feng-1985 opened this issue Mar 7, 2019 · 0 comments

Comments

@feng-1985
Copy link

How to understand this line of code?
while l < r and nums[l] == nums[l - 1]:
l += 1
while l < r and nums[r] == nums[r + 1]:
r -= 1
In 2sum problem, we always do this:
while l < r and nums[l] == nums[l + 1]:
l += 1
while l < r and nums[r] == nums[r - 1]:
r -= 1

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