Skip to content

Commit

Permalink
minor Functions Exercises fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TiVentures committed Feb 20, 2018
1 parent 5cedc1d commit ca4b15f
Show file tree
Hide file tree
Showing 7 changed files with 336 additions and 256 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Find 33: \n",
"#### FIND 33: \n",
"\n",
"Given a list of ints, return True if the array contains a 3 next to a 3 somewhere.\n",
"\n",
Expand Down Expand Up @@ -361,6 +361,26 @@
"has_33([1, 3, 3])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Check\n",
"has_33([1, 3, 1, 3])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Check\n",
"has_33([3, 1, 3])"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -687,7 +707,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.1"
"version": "3.6.2"
}
},
"nbformat": 4,
Expand Down
Loading

0 comments on commit ca4b15f

Please sign in to comment.