leetcode/include/s0093_restore_ip_addresses.hpp

15 lines
219 B
C++
Raw Normal View History

2023-02-02 10:13:48 +00:00
#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