update docs

This commit is contained in:
Zafir Stojanovski 2025-02-08 15:21:11 +01:00
parent 42312fe786
commit 2c40e655f9
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ class RotateMatrixDataset(ProceduralDataset):
return matrix
def _get_rotated(self, matrix: list[list[int]], num_rotations: int) -> list[list[int]]:
"""Rotate the matrix by 90 degrees clockwise"""
"""Rotate the matrix K times by 90 degrees clockwise"""
num_rotations %= 4
n = len(matrix)
output = deepcopy(matrix)