796. Rotate String
Tapan Rachchh
1 min read
class Solution:
def rotateString(self, s: str, goal: str) -> bool:
return len(goal) == len(s) and goal in s * 2
0
Subscribe to my newsletter
Read articles from Tapan Rachchh directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by