28. Implement strStr()
# Easy
In order to be more efficiency, only compare elements of strStr()
in [0: len(strStr)-len(needle)+1]
Last updated
Was this helpful?
# Easy
In order to be more efficiency, only compare elements of strStr()
in [0: len(strStr)-len(needle)+1]
Last updated
Was this helpful?