From a03f9ddb14dcc32e9cf7e6a0e68cd1ca66ee771c Mon Sep 17 00:00:00 2001 From: rattatwinko Date: Tue, 12 Aug 2025 11:52:15 +0000 Subject: [PATCH] Update readme.md --- readme.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index d31150b..3f24359 100644 --- a/readme.md +++ b/readme.md @@ -10,8 +10,11 @@ if you want to contribute write tests like this: import unittest # -def revstring(x): - return x[::-1] +# This is importantly commented out. The UnitTest tests this if uncommented. +# This is only here for reference +# +# def revstring(x): +# return x[::-1] # class TestSolution(unittest.TestCase):