Skip to content

Instantly share code, notes, and snippets.

@rHermes
Last active August 29, 2015 14:17
Show Gist options
  • Save rHermes/c8637f350bc9c939a16b to your computer and use it in GitHub Desktop.
Save rHermes/c8637f350bc9c939a16b to your computer and use it in GitHub Desktop.
def HMP(n):
x = 2
z = []
while x <= n//2:
while n % x == 0:
n //= x
z.append(x)
x += 1
if n is not 1:
z.append(n);
return z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment