day1/exercise/pytriads.py
author Puneeth Chaganti <punchagan@fossee.in>
Thu, 05 Nov 2009 13:09:17 +0530
changeset 272 e5fc37a9ca96
parent 94 8c92864c184b
child 354 5dc6c3673f9d
permissions -rw-r--r--
Added initial slides of Slicing and Striding to session 4.

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