Skip to content

Commit 2e3fcab

Browse files
committed
Update documentation
1 parent 8ae4424 commit 2e3fcab

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

_sources/chap10.ipynb

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2281,7 +2281,11 @@
22812281
"cell_type": "code",
22822282
"execution_count": 70,
22832283
"id": "e04a5c73",
2284-
"metadata": {},
2284+
"metadata": {
2285+
"tags": [
2286+
"remove-cell"
2287+
]
2288+
},
22852289
"outputs": [
22862290
{
22872291
"name": "stdout",
@@ -2372,7 +2376,13 @@
23722376
]
23732377
}
23742378
],
2375-
"source": []
2379+
"source": [
2380+
"for word in word_list:\n",
2381+
" if len(word) >= 8 and is_interlocking(word):\n",
2382+
" first = word[0::2]\n",
2383+
" second = word[1::2]\n",
2384+
" print(word, first, second)"
2385+
]
23762386
},
23772387
{
23782388
"cell_type": "code",

0 commit comments

Comments
 (0)