Added question text into solutions
[ou-summer-of-code-2017.git] / 05-display-board / display-board-solution.ipynb
index 495c11085feacc88252626b2a695a5945cf3e753..98130993dd21fa1620a0426b19eba34d41f79c6e 100644 (file)
@@ -17,7 +17,7 @@
     "* `rotate column A B` rotates column A by B spaces down. Pixels that are moved beyond the bottom edge \"wrap around\" to the top edge.\n",
     "* `rotate row A B` rotates row A by B spaces to the right. Pixels that are moved beyond the right edge \"wrap around\" to the left edge.\n",
     "\n",
-    "You can assume all numbers are integers, the row and column values are always valid, and `A` $\\le$ `B` in the `left` and `toggle` commands."
+    "You can assume all numbers are integers, the row and column values are always valid, and `A` $\\le$ `B` in the `left` and `top` commands."
    ]
   },
   {
@@ -26,7 +26,7 @@
    "source": [
     "For instance, with a smaller grid that is 10 pixels wide and 4 tall, this is what a sample sequence of instructions would do.\n",
     "\n",
-    "* `toggle 1 6` turns on the first six pixels on the top row.\n",
+    "* `top 1 6` turns on the first six pixels on the top row.\n",
     "```\n",
     "******....\n",
     "..........\n",
@@ -42,7 +42,7 @@
     ".*........\n",
     "```\n",
     "\n",
-    "* `toggle 3 10` turns off the pixels in columns 4, 5, and 6, and turns on the pixels in columns 7 to 10.\n",
+    "* `top 3 10` turns off the pixels in columns 4, 5, and 6, and turns on the pixels in columns 7 to 10.\n",
     "\n",
     "```\n",
     "*.....****\n",
    "metadata": {},
    "source": [
     "## Part 2\n",
-    "Where does the flight go from gate 9¾?"
+    "When you've executed your commands, what does the board say your destination is?"
    ]
   },
   {