From 83c02309afd45cdbfce02a54ee39361fce28c592 Mon Sep 17 00:00:00 2001 From: Mohammad Sajid Anwar Date: Mon, 10 Nov 2025 09:40:22 +0000 Subject: - Updated code. --- challenge-346/mohammad-anwar/python/ch-1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge-346/mohammad-anwar/python/ch-1.py b/challenge-346/mohammad-anwar/python/ch-1.py index 9bdbf3be9e..f218c7b612 100644 --- a/challenge-346/mohammad-anwar/python/ch-1.py +++ b/challenge-346/mohammad-anwar/python/ch-1.py @@ -29,7 +29,7 @@ def test_examples(): result = valid_longest_parenthesis(example["str"]) expected = example["exp"] assert result == expected, f"Failed for '{example['str']}': expected {expected}, got {result}" - print(f"✓ '{example['str']}' -> {result}") + print(f"'{example['str']}' -> {result}") if __name__ == "__main__": test_examples() -- cgit