Day 20 Task:
8. Rotate String: https://leetcode.com/problems/rotate-string/
Solution Approach: https://www.youtube.com/watch?v=kP2cpOPNYRc
Solutions:
class Solution:
def rotateString(self, s: str, goal: str) -> bool:
return len(s) == len(goal) and goal in s+s