From aa24c9a1731a42ac13921a0b24755b8e3cc2aad3 Mon Sep 17 00:00:00 2001 From: Ashhar Hasan Date: Sat, 19 Dec 2015 02:36:11 +0530 Subject: [PATCH] Removed the fixme --- arrays_strings/better_compress/better_compress_solution.ipynb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arrays_strings/better_compress/better_compress_solution.ipynb b/arrays_strings/better_compress/better_compress_solution.ipynb index 89acb96..2e9a0c0 100644 --- a/arrays_strings/better_compress/better_compress_solution.ipynb +++ b/arrays_strings/better_compress/better_compress_solution.ipynb @@ -142,8 +142,7 @@ " compressed_string.append(str(count))\n", " count = 1\n", " last_char = char\n", - " # If count is either 1 or 2 (or 0?)\n", - " # FIXME: CAN COUNT BE 0?\n", + " # If count is either 1 or 2\n", " else:\n", " # If count is 1, leave the char as is\n", " if count == 1:\n",