14. Longest Common Prefix
2018-04-05 本文已影响0人
weego
Description
Write a function to find the longest common prefix string amongst an array of strings.
Solution
求一个字符串数组的最长前缀子串,easy级别,暴力
Write a function to find the longest common prefix string amongst an array of strings.
求一个字符串数组的最长前缀子串,easy级别,暴力