분류 전체보기 (66) 썸네일형 리스트형 [LeetCode][Python3] 14. Longest Common Prefix 14. Longest Common Prefix 1. 수평 탐색 class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: if(len(strs)==0): return "" prefix = strs[0] for i in range(1,len(strs)): while(strs[i].find(prefix)!=0): prefix = prefix[0:len(prefix)-1] if(len(prefix)==0): return "" return prefix 풀이 접두사 prefix 를 strs[0]으로 설정한 후, strs의 각 요소에게 접근하면서 prefix를 수정한다. 접두사는 단어의 [0:?]에 존재한다는 특징이 있으므로 prefix=strs[.. [LeetCode][Python3] 1.two-sum github.com/dbwp031/LeetCode dbwp031/LeetCode my solution codes of problems from leetcode. Contribute to dbwp031/LeetCode development by creating an account on GitHub. github.com 전체 코드입니다. class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: length = len(nums) for i in range(0,length): for j in range(i+1,length): if(nums[i]+nums[j] == target): return [i,j] 이전 1 ··· 6 7 8 9 다음