14 lines
154 B
C++
14 lines
154 B
C++
|
#ifndef OFFER_05_HPP
|
||
|
#define OFFER_05_HPP
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
string replaceSpace(string s);
|
||
|
};
|
||
|
|
||
|
#endif
|