Skip to content

Commit 91fe373

Browse files
committed
fix: ch2 tshirts wrong typing
1 parent 2a82359 commit 91fe373

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

02-array-seq/array-seq.ipynb

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
},
257257
{
258258
"cell_type": "code",
259-
"execution_count": 6,
259+
"execution_count": 3,
260260
"metadata": {},
261261
"outputs": [
262262
{
@@ -265,7 +265,7 @@
265265
"[162, 163, 165, 8364, 164]"
266266
]
267267
},
268-
"execution_count": 6,
268+
"execution_count": 3,
269269
"metadata": {},
270270
"output_type": "execute_result"
271271
}
@@ -278,7 +278,7 @@
278278
},
279279
{
280280
"cell_type": "code",
281-
"execution_count": 7,
281+
"execution_count": 4,
282282
"metadata": {},
283283
"outputs": [
284284
{
@@ -287,7 +287,7 @@
287287
"[162, 163, 165, 8364, 164]"
288288
]
289289
},
290-
"execution_count": 7,
290+
"execution_count": 4,
291291
"metadata": {},
292292
"output_type": "execute_result"
293293
}
@@ -306,7 +306,7 @@
306306
},
307307
{
308308
"cell_type": "code",
309-
"execution_count": 8,
309+
"execution_count": 5,
310310
"metadata": {},
311311
"outputs": [
312312
{
@@ -320,7 +320,7 @@
320320
" ('white', 'L')]"
321321
]
322322
},
323-
"execution_count": 8,
323+
"execution_count": 5,
324324
"metadata": {},
325325
"output_type": "execute_result"
326326
}
@@ -334,7 +334,7 @@
334334
},
335335
{
336336
"cell_type": "code",
337-
"execution_count": 9,
337+
"execution_count": 6,
338338
"metadata": {},
339339
"outputs": [
340340
{
@@ -358,27 +358,27 @@
358358
},
359359
{
360360
"cell_type": "code",
361-
"execution_count": 10,
361+
"execution_count": 7,
362362
"metadata": {},
363363
"outputs": [
364364
{
365365
"data": {
366366
"text/plain": [
367367
"[('black', 'S'),\n",
368-
" ('black', 'M'),\n",
369-
" ('black', 'L'),\n",
370368
" ('white', 'S'),\n",
369+
" ('black', 'M'),\n",
371370
" ('white', 'M'),\n",
371+
" ('black', 'L'),\n",
372372
" ('white', 'L')]"
373373
]
374374
},
375-
"execution_count": 10,
375+
"execution_count": 7,
376376
"metadata": {},
377377
"output_type": "execute_result"
378378
}
379379
],
380380
"source": [
381-
"shirts = [(color, size) for size in sizes\n",
381+
"tshirts = [(color, size) for size in sizes\n",
382382
" for color in colors]\n",
383383
"tshirts"
384384
]
@@ -392,7 +392,7 @@
392392
},
393393
{
394394
"cell_type": "code",
395-
"execution_count": 11,
395+
"execution_count": 8,
396396
"metadata": {},
397397
"outputs": [
398398
{
@@ -401,7 +401,7 @@
401401
"(36, 162, 163, 165, 8364, 164)"
402402
]
403403
},
404-
"execution_count": 11,
404+
"execution_count": 8,
405405
"metadata": {},
406406
"output_type": "execute_result"
407407
}
@@ -413,7 +413,7 @@
413413
},
414414
{
415415
"cell_type": "code",
416-
"execution_count": 12,
416+
"execution_count": 9,
417417
"metadata": {},
418418
"outputs": [
419419
{
@@ -422,7 +422,7 @@
422422
"array('I', [36, 162, 163, 165, 8364, 164])"
423423
]
424424
},
425-
"execution_count": 12,
425+
"execution_count": 9,
426426
"metadata": {},
427427
"output_type": "execute_result"
428428
}
@@ -442,7 +442,7 @@
442442
},
443443
{
444444
"cell_type": "code",
445-
"execution_count": 13,
445+
"execution_count": 1,
446446
"metadata": {},
447447
"outputs": [
448448
{

0 commit comments

Comments
 (0)