Substitute Spaces

This commit is contained in:
2022-11-29 20:26:23 +08:00
parent 80ee14486c
commit e37f2531d7
5 changed files with 66 additions and 0 deletions

13
include/offer_05.hpp Normal file
View File

@@ -0,0 +1,13 @@
#ifndef OFFER_05_HPP
#define OFFER_05_HPP
#include <string>
using namespace std;
class Solution {
public:
string replaceSpace(string s);
};
#endif