Development/Algorithm
[LeetCode] Implement strStr()
안녕하세요. LeetCode 28번 Implement strStr() 문제풀이 하겠습니다. https://leetcode.com/problems/implement-strstr/ Implement strStr() - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com [문제] [TestCase] [해설] find를 사용하여 문자열이 포함되는지 확인 [코드] class Solution: def strStr(self, haystack: str, needle: str) ->..
2021. 8. 26. 20:54