Skip to content

Commit c5356e8

Browse files
committed
Create 0014-Longest-Common-Prefix.dart
1 parent ff32745 commit c5356e8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

dart/0014-longest-common-prefix.dart

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution {
2+
String longestCommonPrefix(List<String> strs) {
3+
String res = "";
4+
for (int i=0; i<strs[0].length; i++) {
5+
for (String s in strs) {
6+
if (i >= s.length || strs[0][i] != s[i]){
7+
return res;
8+
}
9+
}
10+
res += strs[0][i];
11+
}
12+
return res;
13+
}
14+
}

0 commit comments

Comments
 (0)