Given two strings s and t, return true if s is a subsequence of t.
A subsequence is formed by deleting some characters without changing relative order.
Example 1:
Input: abc
ahbgdc
Output: trueExample 2:
Input: axc
ahbgdc
Output: falseInput format: Line 1 = s, line 2 = t.