From 3c870cdfe74a7ed8d3f37e7c2ed2be72281d435b Mon Sep 17 00:00:00 2001 From: Dmitrii Ushakov Date: Fri, 8 May 2026 20:18:27 +0300 Subject: [PATCH] Fix unescaped backslash --- tasks/easy/strings/more_than_medium.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/easy/strings/more_than_medium.toml b/tasks/easy/strings/more_than_medium.toml index 749cece..903579f 100644 --- a/tasks/easy/strings/more_than_medium.toml +++ b/tasks/easy/strings/more_than_medium.toml @@ -22,7 +22,7 @@ limits = """ solution = """ def solution(sentence: str) -> list: import re - words = re.findall(r'[\w-]+', sentence) + words = re.findall(r'[\\w-]+', sentence) if not words: return ["there is no result!"]