LeetCodeRotate StringRotate StringEasyStringString MatchingSolution export function rotateString(s: string, goal: string): boolean { return s.length === goal.length && s.repeat(2).includes(goal); }LeetCodeRotate Stringhttps://leetcode.com/problems/rotate-string