GoalScope — is_sublist (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<code>↵
def is_sublist(l, s):↵
"""Check if s is a sublist of l."""↵
sub_len = len(s)↵
for i in range(len(l) - sub_len + 1):↵
if l[i:i + sub_len] == s:↵
return True↵
return False↵
</code>