-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathStringRotationCheck.java
40 lines (34 loc) · 1.14 KB
/
StringRotationCheck.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
/*https://leetcode.com/problems/rotate-string/*/
/*Prateekshya's Solution*/
class Solution {
public boolean rotateString(String s, String goal) {
if (s.length() == 0 && goal.length() == 0) return true;
if (s.length() == 0 || goal.length() == 0) return false;
if (goal.length() != s.length()) return false;
//concatenate s with s
String concat = s+s;
for (int i = 0; i < s.length(); ++i)
//if goal is a substring of the concatenated string then return true
if (goal.equalsIgnoreCase(concat.substring(i,i+goal.length())))
return true;
return false;
}
}
/*Pratik's Solution*/
class Solution {
public boolean rotateString(String s, String goal)
{
if(s.length()!=goal.length())return false;
if(s.length()==0 || s.equals(goal))return true;
int i = 0 , n = s.length();
while(i!=n)
{
if((s.substring(i,n)).equals(goal.substring(0,(n-i))))
{
if((goal.substring(n-i,n)).equals(s.substring(0,i)))return true;
}
i++;
}
return false;
}
}