Skip to content

Commit 8f13b00

Browse files
committed
Restructuring per the text
1 parent 2b9df00 commit 8f13b00

File tree

1 file changed

+5
-35
lines changed

1 file changed

+5
-35
lines changed

Chapter02/Exercise32/Exercise32.ipynb

+5-35
Original file line numberDiff line numberDiff line change
@@ -9,47 +9,17 @@
99
"name": "stdout",
1010
"output_type": "stream",
1111
"text": [
12+
"{1, 2, 3, 4, 5, 6}\n",
13+
"{1, 2, 3, 4, 5, 6}\n",
1214
"{1, 2, 3, 4, 5, 6}\n"
1315
]
1416
}
1517
],
1618
"source": [
1719
"s1 = set([1,2,3,4,5,6])\n",
18-
"print(s1)"
19-
]
20-
},
21-
{
22-
"cell_type": "code",
23-
"execution_count": 2,
24-
"metadata": {},
25-
"outputs": [
26-
{
27-
"name": "stdout",
28-
"output_type": "stream",
29-
"text": [
30-
"{1, 2, 3, 4, 5, 6}\n"
31-
]
32-
}
33-
],
34-
"source": [
20+
"print(s1)\n",
3521
"s2 = set([1,2,2,3,4,4,5,6,6])\n",
36-
"print(s2)"
37-
]
38-
},
39-
{
40-
"cell_type": "code",
41-
"execution_count": 3,
42-
"metadata": {},
43-
"outputs": [
44-
{
45-
"name": "stdout",
46-
"output_type": "stream",
47-
"text": [
48-
"{1, 2, 3, 4, 5, 6}\n"
49-
]
50-
}
51-
],
52-
"source": [
22+
"print(s2)\n",
5323
"s3 = set([3,4,5,6,6,6,1,1,2])\n",
5424
"print(s3)"
5525
]
@@ -114,7 +84,7 @@
11484
"name": "python",
11585
"nbconvert_exporter": "python",
11686
"pygments_lexer": "ipython3",
117-
"version": "3.7.3"
87+
"version": "3.7.4"
11888
}
11989
},
12090
"nbformat": 4,

0 commit comments

Comments
 (0)