diff --git a/matrix/count_islands_in_matrix.py b/matrix/count_islands_in_matrix.py index 2f9a180bc..9e98b4418 100644 --- a/matrix/count_islands_in_matrix.py +++ b/matrix/count_islands_in_matrix.py @@ -73,8 +73,6 @@ class Matrix: # Public class to implement a graph def count_islands(self) -> int: """ - Counts the number of islands in the matrix. - >>> m = Matrix([[True, True, False, False], ... [False, True, False, True], ... [True, False, False, True]])