Leetcode no. 14

    xiaoxiao2025-08-11  3

    14. Longest Common Prefix

    Write a function to find the longest common prefix string amongst an array of strings.

    public class Solution { public String longestCommonPrefix(String[] strs) { if (strs.length==0) return ""; String s= strs[0]; for (int i = 1; i < strs.length; i++) { while (strs[i].indexOf(s)!=0) s=s.substring(0,s.length()-1); } return s; } }

    转载请注明原文地址: https://ju.6miu.com/read-1301627.html
    最新回复(0)