/**
  * 
  * @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
};