摘要: 14.最长公共前缀 public String longestCommonPrefix(String[] strs) { String first = strs[0]; char f[] = first.toCharArray(); int res = first.length(); for(int 阅读全文
posted @ 2021-12-28 15:45 现在开始努力 阅读(36) 评论(0) 推荐(0)