N-Queen |2| ~~~~~~~~~~~ | In this question you are required to check the correctness of possible solutions to the widely known :math:`N` Queen Problem. This problem is the problem of placing :math:`N` chess queens on an :math:`N \times N` chessboard such that no two queens attack each other. Your program will check the possible solution, will print ``"YES"`` if the solution is correct, and will print ``"NO"`` if it is incorrect. | The :math:`N \times N` board will be given in the following format: - | It will be stored in a variable named :math:`\texttt{board}` as a list of lists of strings. - | The list of lists will not be ill-formed. It will consist of N sublists, each consisting of N strings. - | Each string in those sublists will be either "_" (denoting empty square), or "q" (denoting a square with a queen on it). .. container:: sampleio Sample I/O: .. |2| image:: ../../figures/difficulty_five.png :class: difficulty .. code:: default board = [ ["_", "q", "q"] , ["_", "_", "_"] , ["q", "_", "_"] ] Output: NO board = [ ["_", "_", "q", "_"] , ["q", "_", "_", "_"] , ["_", "_", "_", "q"] , ["_", "q", "_", "_"] ] Output: YES .. raw:: html .. raw:: html