Is this because this code make unnecessary loops? Or what else might the problem be here? # Solution.py for https://www.hackerrank.com/challenges/string-similarity import sys for line in sys.stdin: if line.islower(): line = line[:-1] # line will be compared to suffix line_length = ...