GoalScope — is_subsequence (Qwen2.5-Coder-32B-Instruct) — hover a token to see the patched verbalization
↵
<
code
>↵
def
is
_sub
sequence
(s
,
t
):↵
"""
Check
if
s
is
a
sub
sequence
of
t
."""↵
it
=
iter
(t
)↵
return
all
(char
in
it
for
char
in
s
)↵
</
code
>