diff options
Diffstat (limited to 'day1/exercise/bishop.py')
-rw-r--r-- | day1/exercise/bishop.py | 7 |
1 files changed, 7 insertions, 0 deletions
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 |