leetle

Daily challenge for 2025-11-06

310. Rotate String

Given two strings s and goal, return True if and only if s can become goal after some number of shifts on s.

A shift on s consists of moving the leftmost character of s to the rightmost position.

For example, if s = "abcde", then it will be "bcdea" after one shift.

Example:
Input: s = "abcde", goal = "cdeab"
Output: True

Run this challenge interactively in Python or JavaScript when the app loads.