From 9ca9d7ca7b91848630b9ab4224323422b75b4833 Mon Sep 17 00:00:00 2001 From: Madhusudan.C.S Date: Thu, 8 Oct 2009 18:59:47 +0530 Subject: Added quiz tex file and all exercise problems Madhu worked out. --- day1/exercise/bishop.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 day1/exercise/bishop.py (limited to 'day1/exercise/bishop.py') diff --git a/day1/exercise/bishop.py b/day1/exercise/bishop.py new file mode 100644 index 0000000..ccb27d9 --- /dev/null +++ b/day1/exercise/bishop.py @@ -0,0 +1,7 @@ +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 -- cgit