day1/exercise/amicable_debug.py
author Santosh G. Vattam <vattam.santosh@gmail.com>
Wed, 11 Nov 2009 12:26:07 +0530
changeset 301 49bdffe4dca5
parent 64 333092b68926
child 380 669b72283b55
permissions -rw-r--r--
Updated session 2 slides of day 1 and added cheatsheets of day 2.

import math

def aliquot(n):
    sum = 0
    for i in range(1, math.sqrt(n)+1):
        if n % i == 0:
            sum += i + n/i
    return sum

amicable = []
for n in range(10000, 100000):
    m = aliquot(n)
    if aliquot(m) == n:
        amicable.append((m, n))

print amicable

# please please please profile this.