You are given two strings, **s1** and **s2**, of equal lengths. Your task is to determine whether **s2** can be obtained by rotating the characters of **s1**. Note: The characters in the strings are in **lowercase**.
Topics
Companies
Articles
Examples:
Expected Time Complexity: O(n)
Expected Space Complexity: O(n)
Constraints:
1 <= s1.size(), s2.size() <= 10^5
The characters in the strings are in lowercase.
Companies:
AdobeOracle
Topics:
String
Please log in to access the Submissions tab, where you can review your progress and explore code submissions from other participants.
Please log in to access the Solution tab and view detailed answers and explanations.
Please log in to access the Discussion tab and join conversations with other participants.
Access Restricted: Please Login to access the code editor and test cases.