Write a function to check if one string is a subsequence of another string.
Write a function to check if one string is a subsequence of another string.
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: medium
分类: problem-solving
标签: Backend, Java/Kotlin/Python
目标岗位: Software Engineer
目标公司: Atlassian
参考答案摘要
双指针:i 指向子序列串,j 指向母串。遍历母串,遇到相等字符就 i++;最终 i 到达末尾则说明是子序列。时间 O(n),空间 O(1)。
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。