leetcode/include/offer_05.hpp
2022-11-30 18:20:36 +08:00

14 lines
153 B
C++

#ifndef OFFER_05_HPP
#define OFFER_05_HPP
#include <string>
using namespace std;
class Offer05 {
public:
string replaceSpace(string s);
};
#endif