class Solution { public: string leftRotateString(string str, int n) { for(int i=0;i<n;i++) str=str.substr(1)+str[0]; return str; } };