首页 > 代码库 > [leetcode]Valid Sudoku @ Python
[leetcode]Valid Sudoku @ Python
原题地址:https://oj.leetcode.com/problems/valid-sudoku/
题意:
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.
The Sudoku board could be partially filled, where empty cells are filled with the character ‘.‘
.
A partially filled sudoku which is valid.
Note:
A valid Sudoku board (partially filled) is not necessarily solvable. Only the filled cells need to be validated.
解题思路:判断是否为合法的数独。
代码:
class Solution: # @param board, a 9x9 2D array # @return a boolean def isValidSudoku(self, board): def isValid(x, y, tmp): for i in range(9): if board[i][y]==tmp:return False for i in range(9): if board[x][i]==tmp:return False for i in range(3): for j in range(3): if board[(x/3)*3+i][(y/3)*3+j]==tmp: return False return True for i in range(9): for j in range(9): if board[i][j]==‘.‘:continue tmp=board[i][j] board[i][j]=‘D‘ if isValid(i,j,tmp)==False: return False else: board[i][j]=tmp return True
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。