diff --git a/problems/0093.复原IP地址.md b/problems/0093.复原IP地址.md index 6fa732d0..b9a3e08f 100755 --- a/problems/0093.复原IP地址.md +++ b/problems/0093.复原IP地址.md @@ -463,7 +463,7 @@ class Solution: return False num = int(s[start:end+1]) return 0 <= num <= 255 - +``` 回溯(版本三) ```python