Skip to content

Conversation

@pkadambi
Copy link

No description provided.

in the form [point, point_1, point_2, ..., point_n]
"""
return None # Add the logic to check if a point is in the point list here
return (point in point_list) # Add the logic to check if a point is in the point list here
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could also return point in point_list and remove the redundant (). This is a style thing, not a requirements, but something that a linter will throw a warning about.

@jlaura
Copy link
Contributor

jlaura commented Feb 11, 2016

👍

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

Successfully merging this pull request may close these issues.

2 participants