leetcode/include/s0093_restore_ip_addresses.hpp

15 lines
219 B
C++

#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