leetcode/include/offer_58.hpp
2022-11-30 17:24:58 +08:00

15 lines
218 B
C++

#ifndef OFFER_58_HPP
#define OFFER_58_HPP
#include <string>
using namespace std;
class Solution {
public:
string reverseLeftWords(string s, int n);
void reverseSubStr(string &s, int begin, int end);
};
#endif