Skip to content

Commit

Permalink
[chore] fix missing func
Browse files Browse the repository at this point in the history
  • Loading branch information
gitgik committed Jan 26, 2021
1 parent 800a6ae commit 24344d8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions strings/validate_ip_address.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
{
"cell_type": "code",
"execution_count": 14,
"execution_count": 18,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -46,14 +46,14 @@
" return False\n",
"\n",
" for part in parts:\n",
" if not validate_part(part):\n",
" if not valid_part(part):\n",
" return False\n",
" return True"
]
},
{
"cell_type": "code",
"execution_count": 15,
"execution_count": 19,
"metadata": {},
"outputs": [
{
Expand All @@ -62,7 +62,7 @@
"True"
]
},
"execution_count": 15,
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
Expand All @@ -73,7 +73,7 @@
},
{
"cell_type": "code",
"execution_count": 16,
"execution_count": 20,
"metadata": {},
"outputs": [
{
Expand All @@ -82,7 +82,7 @@
"False"
]
},
"execution_count": 16,
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
Expand All @@ -93,7 +93,7 @@
},
{
"cell_type": "code",
"execution_count": 17,
"execution_count": 21,
"metadata": {},
"outputs": [
{
Expand All @@ -102,7 +102,7 @@
"False"
]
},
"execution_count": 17,
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
Expand Down

0 comments on commit 24344d8

Please sign in to comment.