leetcode#28 Implement strStr()

정은경·2022년 5월 26일
0

알고리즘

목록 보기
58/125

1. 문제

2. 나의 풀이

2-1. 문자열의 find 사용하기(1)

class Solution(object):
    def strStr(self, haystack, needle):
        """
        :type haystack: str
        :type needle: str
        :rtype: int
        """
        
        if needle in haystack:
        	return haystack.find(needle)
        return -1

2-2. 문자열의 find 사용하기(2)

class Solution(object):
    def strStr(self, haystack, needle):
        """
        :type haystack: str
        :type needle: str
        :rtype: int
        """
        
        # if needle in haystack:
        return haystack.find(needle)
        # return -1

파이썬 문자열 함수

3. 남의 풀이

profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글