Skip to content

Commit 56e63be

Browse files
committed
Create: 0093-restore-ip-addresses
1 parent ee7a3bc commit 56e63be

4 files changed

+142
-0
lines changed

go/0093-restore-ip-addresses.go

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package main
2+
3+
import "strconv"
4+
5+
func main() {
6+
7+
}
8+
9+
func restoreIpAddresses(s string) []string {
10+
res := []string{}
11+
12+
if len(s) > 12 {
13+
return res
14+
}
15+
16+
var backtrack func(i, dots int, currentIP string)
17+
18+
backtrack = func(i, dots int, currentIP string) {
19+
if dots == 4 && i == len(s) {
20+
res = append(res, currentIP[:len(currentIP)-1])
21+
return
22+
} else if dots > 4 {
23+
return
24+
}
25+
26+
27+
for j := i; j < min(i+3, len(s)); j++ {
28+
val, _ := strconv.Atoi(s[i:j+1])
29+
if val < 256 && (i == j || s[i] != '0') {
30+
backtrack(j+1 , dots + 1, currentIP + s[i:j+1] + ".")
31+
}
32+
}
33+
}
34+
35+
backtrack(0,0,"")
36+
return res
37+
}
38+
39+
func min(a, b int) int {
40+
if a < b {
41+
return a
42+
}
43+
return b
44+
}
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/**
2+
* @param {string} s
3+
* @return {string[]}
4+
*/
5+
var restoreIpAddresses = function (s) {
6+
let res = [];
7+
8+
if (s.length > 12) return res;
9+
10+
/**
11+
*
12+
* @param {number} i
13+
* @param {number} dots
14+
* @param {string} currentIP
15+
*/
16+
function backtracking(i, dots, currentIP) {
17+
if (dots === 4 && i == s.length) {
18+
res.push(currentIP.slice(0, currentIP.length - 1));
19+
return;
20+
} else if (dots > 4) {
21+
return;
22+
}
23+
24+
for (let j = i; j < Math.min(i + 3, s.length); j++) {
25+
if (+s.slice(i, j + 1) < 256 && (i == j || s[i] != '0')) {
26+
backtracking(
27+
j + 1,
28+
dots + 1,
29+
currentIP + s.slice(i, j + 1) + '.'
30+
);
31+
}
32+
}
33+
}
34+
35+
backtracking(0, 0, '');
36+
37+
return res;
38+
};

rust/0093-restore-ip-addresses.rs

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
impl Solution {
2+
pub fn restore_ip_addresses(s: String) -> Vec<String> {
3+
let mut res = vec![];
4+
5+
if s.len() > 12 {
6+
return res;
7+
}
8+
9+
Self::backtrack(&mut res, &s, 0, 0, "".to_string());
10+
11+
res
12+
}
13+
14+
pub fn backtrack(res: &mut Vec<String>, s: &String, i: usize, dots: i32, current_ip: String) {
15+
if dots == 4 && i == s.len() {
16+
let new_valid_ip = current_ip.get(..current_ip.len() - 1).unwrap().to_string();
17+
res.push(new_valid_ip);
18+
return;
19+
} else if dots > 4 {
20+
return;
21+
}
22+
23+
for j in i..usize::min(i + 3, s.len()) {
24+
let mut val = 0;
25+
26+
if let Some(v) = s.get(i..j + 1) {
27+
val = v.parse::<u32>().unwrap();
28+
}
29+
30+
if val < 256 && (i == j || s.get(i..i + 1).unwrap() != "0") {
31+
let new_ip = format!("{}{}.", current_ip, val);
32+
Self::backtrack(res, s, j + 1, dots + 1, new_ip);
33+
}
34+
}
35+
}
36+
}
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
function restoreIpAddresses(s: string): string[] {
2+
let result: string[] = [];
3+
4+
if (s.length > 12) return result;
5+
6+
function backtrack(i: number, dots: number, currentIP: string) {
7+
if (dots == 4 && i == s.length) {
8+
result.push(currentIP.slice(0, currentIP.length - 1));
9+
return;
10+
} else if (dots > 4) {
11+
return;
12+
}
13+
14+
for (let j = i; j < Math.min(i + 3, s.length); j++) {
15+
if (parseInt(s.slice(i, j + 1)) < 256 && (i == j || s[i] != '0')) {
16+
backtrack(j + 1, dots + 1, currentIP + s.slice(i, j + 1) + '.');
17+
}
18+
}
19+
}
20+
21+
backtrack(0, 0, '');
22+
23+
return result;
24+
}

0 commit comments

Comments
 (0)