From 6cc4034fff4f6fcfb870f4f1cfabc47a0fe2deb1 Mon Sep 17 00:00:00 2001
From: tuhacrt <a067800497@gmail.com>
Date: Thu, 22 May 2025 22:43:10 +0800
Subject: [PATCH] =?UTF-8?q?fix:=200093.=E5=A4=8D=E5=8E=9FIP=E5=9C=B0?=
 =?UTF-8?q?=E5=9D=80=20python=20=E8=8C=83=E4=BE=8B=E7=89=88=E6=9C=AC?=
 =?UTF-8?q?=E4=BA=8C=20codeblock=20=E7=BC=BA=E5=B0=91=20'```'?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../0093.\345\244\215\345\216\237IP\345\234\260\345\235\200.md" | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git "a/problems/0093.\345\244\215\345\216\237IP\345\234\260\345\235\200.md" "b/problems/0093.\345\244\215\345\216\237IP\345\234\260\345\235\200.md"
index 6fa732d0c1..b9a3e08f63 100755
--- "a/problems/0093.\345\244\215\345\216\237IP\345\234\260\345\235\200.md"
+++ "b/problems/0093.\345\244\215\345\216\237IP\345\234\260\345\235\200.md"
@@ -463,7 +463,7 @@ class Solution:
             return False
         num = int(s[start:end+1])
         return 0 <= num <= 255
-
+```
 回溯(版本三)
 
 ```python