InterviewSolution
Saved Bookmarks
| 1. |
In how many directions do queens attack each other?(a) 1(b) 2(c) 3(d) 4I have been asked this question in a national level competition.This key question is from Backtracking topic in division Backtracking of Data Structures & Algorithms II |
|
Answer» RIGHT option is (c) 3 The explanation is: Queens attack each other in three directions- vertical, horizontal and diagonal. |
|