day1/exercise/bishop.py
author Christopher Burns <chris.d.burns@gmail.com>
Mon, 28 Jun 2010 23:17:31 -0500
branchscipy2010
changeset 428 ee689f7c3122
parent 64 333092b68926
permissions -rw-r--r--
REF: Minor formatting tweaks in exercise solutions.

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