-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
648b2f7
commit f24943c
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
class Solution { | ||
public String gcdOfStrings(String str1, String str2) { | ||
String ret= ""; | ||
if(!(str1+str2).equals(str2+str1)) return ""; | ||
else{ | ||
int sub = gcd(str1.length(),str2.length()); | ||
ret = str1.substring(0,sub); | ||
} | ||
return ret; | ||
} | ||
|
||
public int gcd(int len1, int len2){ | ||
if(len2==0) | ||
return len1; | ||
else | ||
return gcd(len2,len1 % len2); | ||
} | ||
} |