def isValidSudoku(board): """ :type board: List[List[str]] :rtype: bool """ x = [] y = [] for x in board: