Merge pull request #51 from donnemartin/develop

Update constraints for compress challenge and solution
This commit is contained in:
Donne Martin 2016-06-04 13:41:33 -04:00
commit 50cb6e1a7c
2 changed files with 6 additions and 2 deletions

View File

@ -37,9 +37,11 @@
"* Can we assume the string is ASCII?\n", "* Can we assume the string is ASCII?\n",
" * Yes\n", " * Yes\n",
" * Note: Unicode strings could require special handling depending on your language\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", "* Can you use additional data structures? \n",
" * Yes\n", " * Yes\n",
"* Is this case sensitive?\n", "* Can we assume this fits in memory?\n",
" * Yes" " * Yes"
] ]
}, },

View File

@ -36,9 +36,11 @@
"* Can we assume the string is ASCII?\n", "* Can we assume the string is ASCII?\n",
" * Yes\n", " * Yes\n",
" * Note: Unicode strings could require special handling depending on your language\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", "* Can you use additional data structures? \n",
" * Yes\n", " * Yes\n",
"* Is this case sensitive?\n", "* Can we assume this fits in memory?\n",
" * Yes" " * Yes"
] ]
}, },