@@ -0,0 +1,10 @@
#include <solution/392.h>
bool isSubsequence(char *s, char *t)
{
for (; *s && *t; t++)
if (*s == *t)
s++;
return !*s;
}
The note is not visible to the blocked user.