day1/exercise/pytriads.py
author Christopher Burns <chris.d.burns@gmail.com>
Tue, 22 Jun 2010 00:00:54 -0700
branchscipy2010
changeset 421 47427c8d64fe
parent 380 669b72283b55
child 428 ee689f7c3122
permissions -rw-r--r--
Added breaks to plan so I could think though the timing when drafting the summary.

def is_perfect_square(n):
    i = 1
    while i * i < n:
        i += 1
    return i * i == n, i

def gcd(a, b):
    if a % b == 0:
        return b
    else:
        return gcd(b, a%b)

for a in range(3, 101):
    for b in range( a+1, 101, 2):
        if gcd( a, b ) == 1:
            is_ps, c = is_perfect_square((a * a) + (b * b))
            if is_ps: print a, b, c