Python
-
[LeetCode] 14. Longest Common Prefix (Python)Algorithm/Python 2020. 10. 25. 16:40
문제 원문 링크 : leetcode.com/problems/longest-common-prefix/ Longest Common Prefix - 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 이 문제는 굉장히 쉽다. Easy라고 붙어있는 글씨 그대로다. 먼저 가장 간단하게 떠올릴 수 있는 vertical scanning으로 풀어보겠다. 1. Vertical scanning 1. 주어진 string list를, 각 원소의 길이를 기준으로 오름차순 정렬한다. (이때 ..