-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path14_LongestCommonPrefix.java
40 lines (40 loc) · 1.41 KB
/
14_LongestCommonPrefix.java
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
/*
===============================================
:::: DETAILS ::::
Author : Harsh Mehta, Date : June 2024, Type : Easy Problem, No. 14
===============================================
:::: PROBLEM ::::
* 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:
* Input: strs = ["flower","flow","flight"]
* Output: "fl"
*
* Example 2:
* Input: strs = ["dog","racecar","car"]
* Output: ""
* Explanation: There is no common prefix among the input strings.
===============================================
:::: STATS ::::
TIME : 0ms , Beats 100.00% of users with Java
MEMORY : 41.23mb Beats 70.34% of users with Java
===============================================
:::: SOLUTION ::::
* This code converts a Roman numeral string to an integer.
* It first maps each Roman numeral to its corresponding integer value.
* Then it sums these values while accounting for subtractive combinations (e.g., IV = 4) by checking if a numeral is less than the next one.
===============================================
*/
class Solution {
public String longestCommonPrefix(String[] strs) {
String prefix = strs[0];
for(int i = 1; i<strs.length; i++){
while (strs[i].indexOf(prefix) != 0 ){
prefix = prefix.substring(0, prefix.length()-1);
}
}
return prefix;
}
}