mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-04 16:57:32 +08:00
Add doctest to is_safe function (#11183)
This commit is contained in:
@ -24,6 +24,10 @@ def is_safe(board: list[list[int]], row: int, column: int) -> bool:
|
||||
Returns:
|
||||
Boolean Value
|
||||
|
||||
>>> is_safe([[0, 0, 0], [0, 0, 0], [0, 0, 0]], 1, 1)
|
||||
True
|
||||
>>> is_safe([[1, 0, 0], [0, 0, 0], [0, 0, 0]], 1, 1)
|
||||
False
|
||||
"""
|
||||
|
||||
n = len(board) # Size of the board
|
||||
|
Reference in New Issue
Block a user