Skip to content

Commit eecbb23

Browse files
authored
Update 093. Restore IP Addresses.java
1 parent 60f9597 commit eecbb23

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

093. Restore IP Addresses.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ public List<String> restoreIpAddresses(String s) {
2828
}
2929

3030

31-
// interesting view point (similar to another problem done earlier, using direct approach sometimes is faster than recursive one)
31+
// interesting view point (similar to another problem done earlier
32+
// [https://github.com/futurus/leetcode/blob/master/401.%20Binary%20Watch.java]
33+
// using direct approach sometimes is faster than recursive one)
34+
3235
// 4 nested for loops but runtime is <= 3^4 so no biggie
3336
// inner most if checks for 0.010.x.x cases
3437

0 commit comments

Comments
 (0)