day1/exercise/arm.py
author Puneeth Chaganti <punchagan@gmail.com>
Fri, 30 Apr 2010 12:40:11 +0530
changeset 391 92e56697e489
parent 64 333092b68926
child 425 5afcfce15e71
permissions -rw-r--r--
Removed spaces in dashed lines of session2 day1.

cubes = []
for i in range(10):
    cubes.append(i ** 3)

for i in range(100, 1000):
    a = i % 10
    b = (i / 10) % 10
    c = (i / 100) % 10
    if i == cubes[a] + cubes[b] + cubes[c]:
        print "Armstrong Number: ", i