leetcode-14 最長公共前綴(LongestCommonPrefix)-java

題目:最長公共前綴 編寫一個函數來查找字符串數組中的最長公共前綴。 如果不存在公共前綴,返回空字符串 ""。 說明: 所有輸入只包含小寫字母 a-z 。 public String longestCommonPrefix3(String[] strs) { if (strs == null || strs.length == 0) return ""; if (st
相關文章
相關標籤/搜索