Skip to content

Commit d087c80

Browse files
committed
remove print
1 parent de43128 commit d087c80

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

palindromic-substrings/hi-rachel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ class Solution:
7676
def countSubstrings(self, s: str) -> int:
7777
count = 0
7878
for center in range(len(s)):
79-
print(center)
8079
count += self.expand(s, center, center)
8180

8281
count += self.expand(s, center, center + 1)

0 commit comments

Comments
 (0)