day1/exercise/bishop.py
author rivermaker@RivermakerMBP.local
Tue, 27 Oct 2009 16:05:37 +0530
changeset 192 1574b3bc6be7
parent 64 333092b68926
permissions -rw-r--r--
Changed the focus of the statistics

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