QasimWani / LeetHub

Automatically sync your leetcode solutions to your github account - top 5 trending GitHub repository
https://chrome.google.com/webstore/detail/leethub/aciombdipochlnkbpcbgdpjffcfdbggi
MIT License
3.91k stars 1.37k forks source link

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

Open fannydai opened 5 months ago

fannydai commented 5 months ago

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