fix: 0093.复原IP地址 python 范例版本二 codeblock 缺少 '```'

This commit is contained in:
tuhacrt
2025-05-22 22:43:10 +08:00
parent 2b0ca46598
commit 6cc4034fff

View File

@@ -463,7 +463,7 @@ class Solution:
return False
num = int(s[start:end+1])
return 0 <= num <= 255
```
回溯(版本三)
```python