class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param strs string字符串vector 
     * @return string字符串
     */
    string longestCommonPrefix(vector<string>& strs) {
        string res="";
        if(strs.size()==1)
            return strs[0];
        int l=0;
        while(1)
        {
            if(strs.size()==0||strs[0].size()==0)
                return res;
            char c=strs[0][l];
            for(int i=1;i<strs.size();i++)
                if(l>=strs[i].size()||strs[i][l]!=c)
                    return res;
            res.push_back(c);
            l++;
        }
        return res;
    }
};