最長公共前綴

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