14. Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.
写一个函数用来找一个字符串数组中的最长公共前缀。
你需要完成以下函数:
char* longestCommonPrefix(char** strs, int strsSize) {
}
这道题的网址是:“https://leetcode.com/problems/longest-common-prefix/#/description“
|