Easy
Given two strings s and t, return true if s is a subsequence of t (formed by deleting some characters of t without changing the order of the rest).
Input: s = "abc", t = "ahbgdc" Output: true
Input: s = "axc", t = "ahbgdc" Output: false