Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update is-subsequence.md
Correcting Complexity for 1 problem in is-subsequence
  • Loading branch information
adamhmielke authored Sep 22, 2025
commit 8ad2139dac9124860b128c9960bce909270ab744
2 changes: 1 addition & 1 deletion articles/is-subsequence.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ public class Solution {

### Time & Space Complexity

- Time complexity: $O(n + m)$
- Time complexity: $O(m)$
- Space complexity: $O(1)$

> Where $n$ is the length of the string $s$ and $m$ is the length of the string $t$.
Expand Down