GoalScope — cycpattern_check (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def cycpattern_check(a , b):↵
"""Check if one string is a cyclic permutation of the other."""↵
return len(a) == len(b) and a in (b + b)↵
</code>