All Problems

strstr (Implement strStr)

EasystringExpected: O((N−M) time, O(1) spaceInterview Context

Problem

Given two strings haystack and needle, return the index of the first occurrence of needle in haystack, or -1.

Loading...