Strings - Rotate String
Rotate String
Problem Link:
https://leetcode.com/problems/rotate-string/description/
Hint:
Use 'substr' method to change the string without actually modifying the string.
Code:
class Solution {
public:
bool rotateString(string s, string goal) {
...
nirbhaycodes.hashnode.dev1 min read