From d02fb3b4537a7ec657faf9a0451b38fe4e681f0a Mon Sep 17 00:00:00 2001 From: CheerfulBear22 <.> Date: Fri, 7 Feb 2025 18:25:50 +0000 Subject: [PATCH] Removing another unnecessary comment. Addressing a requested change on #12555 --- matrix/count_islands_in_matrix.py | 2 -- 1 file changed, 2 deletions(-) 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]])