FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Leetcode-JavaScript/Implement strStr().js at master · parshva45/Leetcode-JavaScript · GitHub
parshva45
/
Leetcode-JavaScript
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Leetcode-JavaScript
/
Implement strStr().js
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (16 loc) · 422 Bytes
Breadcrumbs
Leetcode-JavaScript
/
Implement strStr().js
Copy path
File metadata and controls
21 lines (16 loc) · 422 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*Implement strStr().
Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
Example 1:
Input: haystack = "hello", needle = "ll"
Output: 2
Example 2:
Input: haystack = "aaaaa", needle = "bba"
Output: -1*/
/**
*
@param
{
string
} haystack
*
@param
{
string
} needle
*
@return
{
number
}
*/
var
strStr
=
function
(
haystack
,
needle
)
{
return
haystack
.
indexOf
(
needle
)
}
;
Back
|
FazBrowse Home
|
New Git URL