459 Repeated Substring Pattern
1. Question
Input: "abab"
Output: True
Explanation: It's the substring "ab" twice.Input: "aba"
Output: False2. Implementation
3. Time & Space Complexity
Last updated