[leetcode-python3] 28. Implement strStr()
28. Implement strStr() - python3
Implement strStr().
Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
Clarification:
What should we return when needle is an empty string? This is a great question to ask during an interview.
For the purpose of this problem, we will return 0 when needle is an empty string. This is consistent to C's strstr() and Java's indexOf().
My Answer 1: Accepted (Runtime: 24 ms - 95.74% / Memory Usage: 14.5 MB - 27.00%)
class Solution:
def strStr(self, haystack: str, needle: str) -> int:
if needle not in haystack:
return -1
if needle == "":
return 0
return haystack.index(needle)
needle 이 haystack 안에 없으면 (not in) => -1 리턴
needle 이 빈 문자열이면 => 0 리턴
나머지는 haystack 속 needle 의 인덱스를 리턴
not in 과 index 덕분에 3분컷으로 풀었다..
파이썬을 사랑하게 됐어요^^
Author And Source
이 문제에 관하여([leetcode-python3] 28. Implement strStr()), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jsh5408/leetcode-python3-28.-Implement-strStr저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)