LeetCode_14: Longest Common Prefix
# 引言 题目链接:https://leetcode.com/problems/longest-common-prefix/description/ # 题目大意 给出一串单词,编写一个函数找到这串单词的最长公共前缀 **Hint:**If there is no common prefix, return an empty string "". Example Input: ["flower","flow","flight"] Output: "fl" Input:...
more...