From 395264378ced74eb0c7850c453e5a5385f8eba57 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sat, 4 Jun 2016 13:40:15 -0400 Subject: [PATCH] Update constraints for compress challenge and solution --- arrays_strings/compress/compress_challenge.ipynb | 4 +++- arrays_strings/compress/compress_solution.ipynb | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/arrays_strings/compress/compress_challenge.ipynb b/arrays_strings/compress/compress_challenge.ipynb index 72d022b..353cb2c 100644 --- a/arrays_strings/compress/compress_challenge.ipynb +++ b/arrays_strings/compress/compress_challenge.ipynb @@ -37,9 +37,11 @@ "* Can we assume the string is ASCII?\n", " * Yes\n", " * Note: Unicode strings could require special handling depending on your language\n", + "* Is this case sensitive?\n", + " * Yes\n", "* Can you use additional data structures? \n", " * Yes\n", - "* Is this case sensitive?\n", + "* Can we assume this fits in memory?\n", " * Yes" ] }, diff --git a/arrays_strings/compress/compress_solution.ipynb b/arrays_strings/compress/compress_solution.ipynb index 43e5bc6..2313e4b 100644 --- a/arrays_strings/compress/compress_solution.ipynb +++ b/arrays_strings/compress/compress_solution.ipynb @@ -36,9 +36,11 @@ "* Can we assume the string is ASCII?\n", " * Yes\n", " * Note: Unicode strings could require special handling depending on your language\n", + "* Is this case sensitive?\n", + " * Yes\n", "* Can you use additional data structures? \n", " * Yes\n", - "* Is this case sensitive?\n", + "* Can we assume this fits in memory?\n", " * Yes" ] },