牛客OJ:字符串左移

有坑,注意空串的特殊样例。

#include 
using namespace std;

class Solution {
public:
    string LeftRotateString(string str, int n) {
        int l = str.length();
        n = n%l;
        string ans;
        for(int i=0;i

你可能感兴趣的:(NewCoder,OJ)