Add doctest to is_safe function (#11183)

This commit is contained in:
Pedram_Mohajer 2023-11-27 12:43:51 -05:00 committed by GitHub
parent 154e5e8681
commit b860003576
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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