1.class Solution { 2. public String longestCommonPrefix(String[] strs) { 3. if(strs.length == 0) { 4. return ""; 5. } 6. String ans ...
確定! 回上一頁