Given two strings *s1* and *s2*, determine if *s2* is a rotation of *s1*. (Hint: check if *s2* is a substring of *s1+s1*.)
Two lines: s1, then s2.
"true" or "false".
Example 1:
Input:
s = "waterbottle" goal = "erbottlewat"
Output:
true
Explanation:
*s2* is a rotation of *s1*.