392. Is Subsequence 📏
Problem Statement 📜
Examples 🌟
s = "abc"
t = "ahbgdc"trues = "axc"
t = "ahbgdc"Constraints ⚙️
Solution 💡
Approach 1: Two-Pointer Technique
Java Solution
Time Complexity ⏳
Space Complexity 💾
Follow-up: Efficient Solution for Multiple Queries
Last updated