14. Longest Common Prefix

Write a function to find the longest common prefix string amongst an array of strings.

让计算数组所有字符串的公共prefix, 刚开始还以为两个就算common prefix

既然所有, 按排序,查看第一个和最后一个就可以了, 边界条件要判断好。

发现easy的题都不难, 但是要考虑好临界值, 一定要冷静, 不能慌!

14. Longest Common Prefix_第1张图片

你可能感兴趣的:(14. Longest Common Prefix)