c# LeetCode 14. 最長公共前綴 (string)

原題:https://leetcode-cn.com/problems/longest-common-prefix/ 拿到第一個字符串,依次比較,逐漸削減自身。直到所有的字符都比較完成。 public class Solution { public string LongestCommonPrefix(string[] strs) { if (strs.Length ==
相關文章
相關標籤/搜索