class Solution { public: string leftRotateString(string str, int n) { string res = str.substr(n) + str.substr(0, n); return res; } };