Skip to content

Commit ca4b15f

Browse files
committed
minor Functions Exercises fixes
1 parent 5cedc1d commit ca4b15f

7 files changed

+336
-256
lines changed

03-Methods and Functions/.ipynb_checkpoints/03-Function Practice Exercises-checkpoint.ipynb

+22-2
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@
328328
"cell_type": "markdown",
329329
"metadata": {},
330330
"source": [
331-
"### Find 33: \n",
331+
"#### FIND 33: \n",
332332
"\n",
333333
"Given a list of ints, return True if the array contains a 3 next to a 3 somewhere.\n",
334334
"\n",
@@ -361,6 +361,26 @@
361361
"has_33([1, 3, 3])"
362362
]
363363
},
364+
{
365+
"cell_type": "code",
366+
"execution_count": null,
367+
"metadata": {},
368+
"outputs": [],
369+
"source": [
370+
"# Check\n",
371+
"has_33([1, 3, 1, 3])"
372+
]
373+
},
374+
{
375+
"cell_type": "code",
376+
"execution_count": null,
377+
"metadata": {},
378+
"outputs": [],
379+
"source": [
380+
"# Check\n",
381+
"has_33([3, 1, 3])"
382+
]
383+
},
364384
{
365385
"cell_type": "markdown",
366386
"metadata": {},
@@ -687,7 +707,7 @@
687707
"name": "python",
688708
"nbconvert_exporter": "python",
689709
"pygments_lexer": "ipython3",
690-
"version": "3.6.1"
710+
"version": "3.6.2"
691711
}
692712
},
693713
"nbformat": 4,

0 commit comments

Comments
 (0)