Skip to content

Instantly share code, notes, and snippets.

@Se7soz
Last active January 3, 2016 05:18
Show Gist options
  • Select an option

  • Save Se7soz/8414332 to your computer and use it in GitHub Desktop.

Select an option

Save Se7soz/8414332 to your computer and use it in GitHub Desktop.
Read the How to prepare for an interview series at my blog: http://se7so.blogspot.com/2014/01/how-to-prepare-for-interview.html
bool isSubstring(string s1, string s2) {
return (s1.find(s2) != string::npos);
}
bool isRotated(string s1, string s2) {
string tmp = s1+s1;
return isSubstring(tmp, s2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment