diff --git a/python/Chapter 1/Question1_5/ChapQ1.5.py b/python/Chapter 1/Question1_5/ChapQ1.5.py index 23ed4138..43eb48d1 100644 --- a/python/Chapter 1/Question1_5/ChapQ1.5.py +++ b/python/Chapter 1/Question1_5/ChapQ1.5.py @@ -64,6 +64,6 @@ def compress(string): if len(result) < len(string): return result else: - retunr string + return string print compress("aabccc ccaaa")