Skip to content

Instantly share code, notes, and snippets.

@spookiestevie
Created November 20, 2017 21:56
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 spookiestevie/a321c9c488f13b49917834b76e46b7b1 to your computer and use it in GitHub Desktop.
Save spookiestevie/a321c9c488f13b49917834b76e46b7b1 to your computer and use it in GitHub Desktop.
solutions for the elliptic curve in the range of 223
for x in range(1,224):
for y in range(1,224):
if (y**2) % 223 == (x**3 + 7) % 223:
print x,y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment