aboutsummaryrefslogtreecommitdiff
path: root/challenge-346
diff options
context:
space:
mode:
authorMohammad Sajid Anwar <mohammad.anwar@yahoo.com>2025-11-10 09:40:22 +0000
committerMohammad Sajid Anwar <mohammad.anwar@yahoo.com>2025-11-10 09:40:22 +0000
commit83c02309afd45cdbfce02a54ee39361fce28c592 (patch)
tree9dcb9ddb24aa9656926b10abebac1e9e3c9408ab /challenge-346
parentd945cc3d48b1284d49aba765341514707f7bee50 (diff)
downloadperlweeklychallenge-club-83c02309afd45cdbfce02a54ee39361fce28c592.tar.gz
perlweeklychallenge-club-83c02309afd45cdbfce02a54ee39361fce28c592.tar.bz2
perlweeklychallenge-club-83c02309afd45cdbfce02a54ee39361fce28c592.zip
- Updated code.
Diffstat (limited to 'challenge-346')
-rw-r--r--challenge-346/mohammad-anwar/python/ch-1.py2
1 files changed, 1 insertions, 1 deletions
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()