We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae4424 commit 2e3fcabCopy full SHA for 2e3fcab
_sources/chap10.ipynb
@@ -2281,7 +2281,11 @@
2281
"cell_type": "code",
2282
"execution_count": 70,
2283
"id": "e04a5c73",
2284
- "metadata": {},
+ "metadata": {
2285
+ "tags": [
2286
+ "remove-cell"
2287
+ ]
2288
+ },
2289
"outputs": [
2290
{
2291
"name": "stdout",
@@ -2372,7 +2376,13 @@
2372
2376
]
2373
2377
}
2374
2378
],
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
2386
},
2387
2388
0 commit comments