Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
knakul853
Jul 20th, 2020
202
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++
0.33 KB
| None
|
0
0
raw
download
clone
embed
print
report
class
Solution
{
public
:
int
strStr
(
string a, string b
)
{
int
n
=
a.
length
(
)
;
int
m
=
b.
length
(
)
;
for
(
int
i
=
0
;
i
<
n
-
m
+
1
;
i
++
)
{
if
(
b
==
a.
substr
(
i,m
)
)
{
return
i
;
}
}
return
-
1
;
}
}
;
Add Comment
Please,
Sign In
to add comment
Public Pastes
SigilDERG Student Model V6 Proposed
Python | 8 min ago | 11.58 KB
BFS Algorithm
C++ | 35 min ago | 0.71 KB
?Make 1500$ in 1 day [Method]? MA
Java | 55 min ago | 0.14 KB
DFS Algorithm
C++ | 58 min ago | 0.56 KB
????FREE 500$ GIFTCARDS???? VF
Java | 58 min ago | 0.15 KB
3x3improved
Lua | 60 min ago | 3.57 KB
????Make 3500$ in 1 day [Method]???? XH
Java | 1 hour ago | 0.15 KB
show-pagemap , (c) s.kazak
C | 1 hour ago | 9.90 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!