Fixed spliting at spaces issue
This commit is contained in:
@@ -15,7 +15,7 @@ def tile(grid: np.ndarray, hole: tuple[int, int]) -> None:
|
||||
|
||||
tile_index = 0
|
||||
grid[hole] = -1
|
||||
|
||||
|
||||
def recurse(size: int, top: int, left: int, hole: tuple[int, int]) -> None:
|
||||
if size == 1:
|
||||
return
|
||||
@@ -59,7 +59,7 @@ def tile(grid: np.ndarray, hole: tuple[int, int]) -> None:
|
||||
# to imported and invoked from other python scripts
|
||||
def main():
|
||||
n: int = int(input())
|
||||
x, y = map(int, input().split(" "))
|
||||
x, y = map(int, input().split())
|
||||
|
||||
grid: np.ndarray = np.zeros((2**n, 2**n), dtype=int)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user