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