s0093
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
2023-02-02 18:13:48 +08:00
parent 19212e880b
commit 06929474ee
4 changed files with 78 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
#ifndef S0093_RESTORE_IP_ADDRESSES_HPP
#define S0093_RESTORE_IP_ADDRESSES_HPP
#include <string>
#include <vector>
using namespace std;
class S0093 {
public:
vector<string> restoreIpAddresses(string s);
};
#endif