We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de43128 commit d087c80Copy full SHA for d087c80
palindromic-substrings/hi-rachel.py
@@ -76,7 +76,6 @@ class Solution:
76
def countSubstrings(self, s: str) -> int:
77
count = 0
78
for center in range(len(s)):
79
- print(center)
80
count += self.expand(s, center, center)
81
82
count += self.expand(s, center, center + 1)
0 commit comments