LeetCode #28

Kiyong Lee·2022년 1월 7일
0

leetcode

목록 보기
8/20

28. Implement str


1. 코드

class Solution:
    def strStr(self, haystack: str, needle: str) -> int:
        return 0 if needle == "" else haystack.find(needle) 

2. 풀이

  1. needle0일 경우 0을 리턴하고, 그 외 예외사항은 -1을 리턴

  2. 사용할 수 있는 함수는 indexOffind가 있는데 전자는 인덱스 리턴을 할 수 없을 때 에러가 발생
    그래서 try-except를 사용해야하고, 후자가 -1을 리턴해서 사용하기엔 find가 적합

profile
ISTJ인 K-개발자

0개의 댓글

관련 채용 정보