0014._Longest_Common_Prefix

014. Longest Common Prefix

难度: Easy

刷题内容

原题连接

内容描述

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

If there is no common prefix, return an empty string "".

Example 1:

1
2
Input: ["flower","flow","flight"]
Output: "fl"

Example 2:

1
2
3
Input: ["dog","racecar","car"]
Output: ""
Explanation: There is no common prefix among the input strings.
Note:

All given inputs are in lowercase letters a-z.

解题方案

思路
**- 时间复杂度: O(N)**- 空间复杂度: O(N)**

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* @param {string[]} strs
* @return {string}
*/
let longestCommonPrefix = function(strs) {
let firstStr = strs[0];
let result ='';
if(!strs.length){
return result;
}
for (let i = 0; i < firstStr.length; i++) {
for (let j = 1; j < strs.length; j++) {
if(firstStr.charAt(i) !== strs[j].charAt(i)){
return result;
}
}
result = result + firstStr.charAt(i);
}
return result;

};