Skip to content

Commit

Permalink
Update intro_notebook.ipynb
Browse files Browse the repository at this point in the history
remove empty cell
  • Loading branch information
mschwamb authored Jan 30, 2024
1 parent ee8be77 commit d815288
Showing 1 changed file with 46 additions and 13 deletions.
59 changes: 46 additions & 13 deletions docs/notebooks/intro_notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"id": "actual-thirty",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -49,32 +49,65 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,
"id": "f93e79e9",
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Printing order 0 triangle\n",
"*\n",
"Printing order 1 triangle\n",
" * \n",
"* *\n",
"Printing order 2 triangle\n",
" * \n",
" * * \n",
" * * \n",
"* * * *\n"
]
}
],
"source": [
"for order in range(3):\n",
" sierpinsky(order)"
]
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 3,
"id": "526ac5db",
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Printing order 4 triangle\n",
" * \n",
" * * \n",
" * * \n",
" * * * * \n",
" * * \n",
" * * * * \n",
" * * * * \n",
" * * * * * * * * \n",
" * * \n",
" * * * * \n",
" * * * * \n",
" * * * * * * * * \n",
" * * * * \n",
" * * * * * * * * \n",
" * * * * * * * * \n",
"* * * * * * * * * * * * * * * *\n"
]
}
],
"source": [
"sierpinsky(4)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "ce7b9e93",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
Expand Down

0 comments on commit d815288

Please sign in to comment.