| 1 | class Solution: |
| 2 | def isSubsequence(self, s: str, t: str) -> bool: |
| 3 | i=0 |
| 4 | # j=0 |
| 5 | if s=="": |
| 6 | return True |
| 7 | for j in range(len(t)): |
| 8 | |
| 9 | if s[i]==t[j]: |
| 10 | i+=1 |
| 11 | if i==len(s): |
| 12 | return True |
| 13 | |
| 14 | return False |
nothing calls this directly
no outgoing calls
no test coverage detected