Removing another unnecessary comment. Addressing a requested change on #12555

This commit is contained in:
CheerfulBear22 2025-02-07 18:25:50 +00:00
parent c014af947c
commit d02fb3b453

View File

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