We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc6e0d3 commit 8109828Copy full SHA for 8109828
Easy/implement-strstr.md
@@ -0,0 +1,8 @@
1
+Code
2
+====
3
+
4
+```go
5
+func strStr(haystack string, needle string) int {
6
+ return strings.Index(haystack, needle)
7
+}
8
+```
README.md
@@ -5,7 +5,7 @@ My collection of leet code problems solved in GoLang!
| [Easy](#easy) | [Medium](#medium) | [Hard](#hard) |
|---------------|-------------------|---------------|
-| 33 | 51 | 10 |
+| 34 | 51 | 10 |
9
10
Problems finished
11
=================
@@ -79,6 +79,8 @@ Easy
79
80
- [valid-mountain-array](Easy/valid-mountain-array.md)
81
82
+- [implement-strstr](Easy/implement-strstr.md)
83
84
Medium
85
------
86
0 commit comments