From db47e1bcaa515d1b5d8fb2d33a34aabc1fe4bf48 Mon Sep 17 00:00:00 2001 From: Donne Martin Date: Sun, 17 May 2015 07:47:51 -0400 Subject: [PATCH] Tweaked problem statement for clarity. Removed unused Pythonic-Code header. --- stacks-queues/set-of-stacks.ipynb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stacks-queues/set-of-stacks.ipynb b/stacks-queues/set-of-stacks.ipynb index 537c21b..4a6b1a3 100644 --- a/stacks-queues/set-of-stacks.ipynb +++ b/stacks-queues/set-of-stacks.ipynb @@ -4,13 +4,12 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Problem: Implement SetOfStacks that wraps a set of stacks bound by a capacity.\n", + "## Problem: Implement SetOfStacks that wraps a list of stacks, where each stack is bound by a capacity.\n", "\n", "* [Clarifying Questions](#Clarifying-Questions)\n", "* [Test Cases](#Test-Cases)\n", "* [Algorithm](#Algorithm)\n", - "* [Code](#Code)\n", - "* [Pythonic-Code](#Pythonic-Code)" + "* [Code](#Code)" ] }, {