Skip to content

Instantly share code, notes, and snippets.

@levwu
Created June 12, 2021 09:54
Show Gist options
  • Save levwu/cef49854b3a38869e31c8fc8c14b7b5b to your computer and use it in GitHub Desktop.
Save levwu/cef49854b3a38869e31c8fc8c14b7b5b to your computer and use it in GitHub Desktop.
def __eq__(self, other):
return other.p == self.p and other.q == self.q
def __hash__(self):
return hash((self.p, self.q))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment