From 8cbd18cdaa363005c4c72ea32a222a2eda914cfe Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Fri, 26 Jun 2015 04:46:56 -0400 Subject: [PATCH] Tweaked description of Constraints and Assumptions. --- arrays-strings/compress.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arrays-strings/compress.ipynb b/arrays-strings/compress.ipynb index bdb243b..440ce68 100644 --- a/arrays-strings/compress.ipynb +++ b/arrays-strings/compress.ipynb @@ -13,7 +13,7 @@ "source": [ "## Problem: Compress a string such that 'AAABCCDDDD' becomes 'A3B1C2D4'\n", "\n", - "* [Clarifying Questions](#Clarifying-Questions)\n", + "* [Constraints and Assumptions](#Constraints-and-Assumptions)\n", "* [Test Cases](#Test-Cases)\n", "* [Algorithm: List](#Algorithm:-List)\n", "* [Code: List](#Code:-List)\n", @@ -26,9 +26,9 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Clarifying Questions\n", + "## Constraints and Assumptions\n", "\n", - "*Problem statements are sometimes intentionally ambiguous. Asking clarifying questions, identifying constraints, and stating assumptions help to ensure you code the intended solution.*\n", + "*Problem statements are often intentionally ambiguous. Identifying constraints and stating assumptions can help to ensure you code the intended solution.*\n", "\n", "* Can I assume the string is ASCII?\n", " * Yes\n",