题解 | #最长公共前缀#
最长公共前缀
http://www.nowcoder.com/practice/28eb3175488f4434a4a6207f6f484f47
/**
*
* @param strs string字符串一维数组
* @return string字符串
*/
function longestCommonPrefix( strs ) {
// write code here
if(!strs.length) return '';
let res=strs[0];
for(let str of strs){
for(let i=0;i<res.length;i++){
if(str[i]!==res[i]){
res=res.slice(0,i);
break;
}
}
}
return res.toString();
}
module.exports = {
longestCommonPrefix : longestCommonPrefix
};