class Solution:

    def strStr(self, haystack: str, needle: str) -> int:

        return haystack.find(needle)


모두가 예상한 그 풀이..