leetcode/include/offer_05.hpp

14 lines
153 B
C++
Raw Normal View History

2022-11-29 12:26:23 +00:00
#ifndef OFFER_05_HPP
#define OFFER_05_HPP
#include <string>
using namespace std;
2022-11-30 10:20:36 +00:00
class Offer05 {
2022-11-29 12:26:23 +00:00
public:
string replaceSpace(string s);
};
#endif