← AlgoMindset 75

Is Subsequence

Easy🎙 Interview me on this

🧠 Before you code — what pattern fits?

Given two strings s and t, return true if s is a subsequence of t: s can be formed from t by deleting some (possibly zero) characters without changing the order of the remaining characters.

("abc","ahbgdc") → true

("axc","ahbgdc") → false

🎬 Video explanation · NeetCode

Your solution runs against 3 unit tests, including edge and large-value cases.

Loading...

Test console · 3 unit tests

Submit your code to run it against all 3 unit tests. Results appear here.

JavaScript, TypeScript & Python run sandboxed in your browser; other languages run on the execution server. Your code is saved locally as you type.