-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0014-Longest-common-prefix.cs
More file actions
40 lines (33 loc) · 908 Bytes
/
0014-Longest-common-prefix.cs
File metadata and controls
40 lines (33 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Text;
namespace Solution._0014.Longest_common_prefix
{
public class _0014_Longest_common_prefix
{
public string LongestCommonPrefix(string[] strs)
{
if (strs.Length == 0) return null;
string res = string.Empty;
string str = strs[0];
foreach (var s in strs)
{
if (s.Length < str.Length)
str = s;
}
int len = strs.Length;
for (int i = 0; i < str.Length; i++)
{
for (int j = 0; j < len; j++)
{
if (str[i] == strs[j][i])
continue;
else
return res;
}
res += str[i];
}
return res;
}
}
}