Skip to content

Commit 321f643

Browse files
committed
update solution
1 parent ee0f7b5 commit 321f643

File tree

1 file changed

+14
-80
lines changed

1 file changed

+14
-80
lines changed

index.ipynb

Lines changed: 14 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
{
4747
"cell_type": "code",
48-
"execution_count": 67,
48+
"execution_count": 1,
4949
"metadata": {
5050
"collapsed": true
5151
},
@@ -58,20 +58,9 @@
5858
},
5959
{
6060
"cell_type": "code",
61-
"execution_count": 68,
61+
"execution_count": null,
6262
"metadata": {},
63-
"outputs": [
64-
{
65-
"data": {
66-
"text/plain": [
67-
"2"
68-
]
69-
},
70-
"execution_count": 68,
71-
"metadata": {},
72-
"output_type": "execute_result"
73-
}
74-
],
63+
"outputs": [],
7564
"source": [
7665
"number_of_orders() # 2"
7766
]
@@ -85,7 +74,7 @@
8574
},
8675
{
8776
"cell_type": "code",
88-
"execution_count": 75,
77+
"execution_count": 3,
8978
"metadata": {
9079
"collapsed": true
9180
},
@@ -97,20 +86,9 @@
9786
},
9887
{
9988
"cell_type": "code",
100-
"execution_count": 78,
89+
"execution_count": null,
10190
"metadata": {},
102-
"outputs": [
103-
{
104-
"data": {
105-
"text/plain": [
106-
"'beet salad'"
107-
]
108-
},
109-
"execution_count": 78,
110-
"metadata": {},
111-
"output_type": "execute_result"
112-
}
113-
],
91+
"outputs": [],
11492
"source": [
11593
"orders = ['turkey sandwich', 'eggs']\n",
11694
"next_up() # 'turkey sandwich'\n",
@@ -142,20 +120,9 @@
142120
},
143121
{
144122
"cell_type": "code",
145-
"execution_count": 80,
123+
"execution_count": null,
146124
"metadata": {},
147-
"outputs": [
148-
{
149-
"data": {
150-
"text/plain": [
151-
"'spinach salad'"
152-
]
153-
},
154-
"execution_count": 80,
155-
"metadata": {},
156-
"output_type": "execute_result"
157-
}
158-
],
125+
"outputs": [],
159126
"source": [
160127
"healthy_order() # 'spinach salad'"
161128
]
@@ -169,20 +136,9 @@
169136
},
170137
{
171138
"cell_type": "code",
172-
"execution_count": 81,
139+
"execution_count": null,
173140
"metadata": {},
174-
"outputs": [
175-
{
176-
"data": {
177-
"text/plain": [
178-
"'spinach salad'"
179-
]
180-
},
181-
"execution_count": 81,
182-
"metadata": {},
183-
"output_type": "execute_result"
184-
}
185-
],
141+
"outputs": [],
186142
"source": [
187143
"orders = ['turkey sandwich', 'eggs']\n",
188144
"healthy_order()\n",
@@ -214,20 +170,9 @@
214170
},
215171
{
216172
"cell_type": "code",
217-
"execution_count": 83,
173+
"execution_count": null,
218174
"metadata": {},
219-
"outputs": [
220-
{
221-
"data": {
222-
"text/plain": [
223-
"['Spinach Salad', 'Turkey Sandwich']"
224-
]
225-
},
226-
"execution_count": 83,
227-
"metadata": {},
228-
"output_type": "execute_result"
229-
}
230-
],
175+
"outputs": [],
231176
"source": [
232177
"capitalize_orders() # ['Spinach Salad', 'Turkey Sandwich']"
233178
]
@@ -241,20 +186,9 @@
241186
},
242187
{
243188
"cell_type": "code",
244-
"execution_count": 84,
189+
"execution_count": null,
245190
"metadata": {},
246-
"outputs": [
247-
{
248-
"data": {
249-
"text/plain": [
250-
"['Spinach Salad', 'Turkey Sandwich', 'Eggs']"
251-
]
252-
},
253-
"execution_count": 84,
254-
"metadata": {},
255-
"output_type": "execute_result"
256-
}
257-
],
191+
"outputs": [],
258192
"source": [
259193
"orders = ['spinach salad', 'turkey sandwich']\n",
260194
"capitalize_orders() # ['Spinach Salad', 'Turkey Sandwich']\n",

0 commit comments

Comments
 (0)