Skip to content

28_ImplementstrStr()

a920604a edited this page Apr 14, 2023 · 1 revision

title: 28. Implement strStr() tags:
- Two Pointers categories: leetcode comments: false

solution

option 1

option 2 - KMP

option 3 - Sunday 匹配

analysis

  • option 1
    • time complexity O(nm)
    • space complexity O(1)
  • option 2
    • time complexity
    • space
Clone this wiki locally