Typing fixes

This commit is contained in:
2025-09-18 09:06:07 -04:00
parent 5aba700f48
commit f51d122a33
3 changed files with 10 additions and 5 deletions

View File

@@ -45,7 +45,7 @@ def palindrome_partitions(s: str) -> int:
def main():
n: int = int(input())
for i in range(0, n):
for _ in range(0, n):
in_str = input().strip()
print(palindrome_partitions(in_str))

View File

@@ -43,7 +43,7 @@ def palindrome_partitions(s: str) -> int:
def main():
n: int = int(input())
for i in range(0, n):
for _ in range(0, n):
in_str = input().strip()
print(palindrome_partitions(in_str))