14.最長公共前綴

class Solution {     public String longestCommonPrefix(String[] strs) {         if(strs.length == 0)             return "";         if(strs.length == 1)                 return strs[0];         int j;
相關文章
相關標籤/搜索