LeetHub icon indicating copy to clipboard operation
LeetHub copied to clipboard

28. Find the Index of the First Occurrence in a String README.md

Open fannydai opened this issue 1 year ago • 0 comments

Problem 28 readme is not generating

To Reproduce Steps to reproduce the behavior: Submit working code for question 28 on leetcode, submit problem https://leetcode.com/problems/find-the-index-of-the-first-occurrence-in-a-string/

class Solution { public int strStr(String haystack, String needle) { return haystack.indexOf(needle); } } image

fannydai avatar Feb 02 '24 08:02 fannydai