GoalScope — prime_length (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def prime_length(string):↵
"""Check if the length of the string is a prime number."""↵
n = len(string)↵
if n < 2:↵
return False↵
for i in range(2, int(n**0.5) + 1):↵
if n % i == 0:↵
return False↵
return True↵
↵
Test cases↵
print(prime_length('Hello')) True↵
print(prime_length('abcdcba')) True↵
print(prime_length('kittens')) True↵
print(prime_length('orange')) False↵
</code>