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",