day1/exercise/pytriads.py
author Santosh G. Vattam <vattam.santosh@gmail.com>
Wed, 11 Nov 2009 12:26:07 +0530
changeset 301 49bdffe4dca5
parent 94 8c92864c184b
child 354 5dc6c3673f9d
permissions -rw-r--r--
Updated session 2 slides of day 1 and added cheatsheets of day 2.

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)

a = 3
while a < 100:
    b = a + 1
    while b < 100:
        is_ps, c = is_perfect_square((a * a) + (b * b))
        if is_ps and gcd(a, b) == 1:
            print a, b, c
        b += 1
    a += 1