class Solution { public: vector<string> restoreIpAddresses(string s) { vector<string> res; helper(s, 0, "", res); return res; } void helper(string s, int n, string out, vector<string>& res) { if (n == 4) { ...