Files
2026-02-11 14:56:22 +05:30

12 lines
250 B
C++

class Solution{
public :
int strStr(string haystack, string needle){
if(needle.empty()) return 0;
int n = haystack.length(), m = needle.length();
for(int i =0;i<=n-m; i++){
}
}
}