day1/exercise/bishop.py
author Santosh G. Vattam <vattam.santosh@gmail.com>
Tue, 27 Oct 2009 17:49:45 +0530
changeset 198 4cb13665b3b6
parent 64 333092b68926
permissions -rw-r--r--
Updated session 2 slides and added 4 graphs to data directory.

r, c = 5, 4
for i in range(1, 9):
    for j in range(1, 9):
        a = r - i
        b = c - j
        if a and b and a == b or a == -b:
            print i, j