LeetCode28. Implement strStr()
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
Solution
class Solution(object):
def strStr(self, haystack, needle):
"""
:type haystack: str
:type needle: str
:rtype: int
"""
if haystack.find(needle) >= 0:
return haystack.find(needle)
else:
return -1
'Python > PS in Python' 카테고리의 다른 글
[백준/파이썬] No.11650 좌표 정렬하기 (0) | 2020.04.15 |
---|---|
[백준/파이썬] No.11651 좌표 정렬하기 (0) | 2020.04.15 |
[백준/파이썬] No.2750 수 정렬하기 (0) | 2020.04.15 |
[백준/파이썬] No.11720 숫자의 합 (0) | 2020.04.11 |
[백준/파이썬] No.11654 아스키 코드 (0) | 2020.04.11 |
댓글