Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added 1.-Python/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,331 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<img src=\"https://bit.ly/2VnXWr2\" width=\"100\" align=\"left\">"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# The Snail and the Well\n",
"\n",
"A snail falls at the bottom of a 125 cm well. Each day the snail rises 30 cm. But at night, while sleeping, slides 20 cm because the walls are wet. How many days does it take for the snail to escape the well?\n",
"\n",
"**Hint**: The snail gets out of the well when it surpasses the 125cm of height.\n",
"\n",
"## Tools\n",
"\n",
"1. Loop: **while**\n",
"2. Conditional statements: **if-else**\n",
"3. Function: **print()**\n",
"\n",
"## Tasks\n",
"\n",
"#### 1. Assign the challenge data to variables with representative names: `well_height`, `daily_distance`, `nightly_distance` and `snail_position`."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"well_height=125\n",
"daily_distance=30\n",
"nightly_distance=20\n",
"snail_position=0"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 2. Create a variable `days` to keep count of the days that pass until the snail escapes the well. "
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"days=0"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 3. Find the solution to the challenge using the variables defined above. "
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"terminado dia: 30\n",
"final noche: 10\n",
"dia: 1\n",
"terminado dia: 40\n",
"final noche: 20\n",
"dia: 2\n",
"terminado dia: 50\n",
"final noche: 30\n",
"dia: 3\n",
"terminado dia: 60\n",
"final noche: 40\n",
"dia: 4\n",
"terminado dia: 70\n",
"final noche: 50\n",
"dia: 5\n",
"terminado dia: 80\n",
"final noche: 60\n",
"dia: 6\n",
"terminado dia: 90\n",
"final noche: 70\n",
"dia: 7\n",
"terminado dia: 100\n",
"final noche: 80\n",
"dia: 8\n",
"terminado dia: 110\n",
"final noche: 90\n",
"dia: 9\n",
"terminado dia: 120\n",
"final noche: 100\n",
"dia: 10\n",
"dia: 11\n"
]
}
],
"source": [
"while snail_position < well_height:\n",
" snail_position += daily_distance\n",
" \n",
" if well_height <= snail_position:\n",
" days += 1\n",
" print(\"dia:\", days)\n",
" break\n",
" \n",
" print(\"terminado dia:\", snail_position)\n",
" snail_position -= nightly_distance \n",
" print(\"final noche:\", snail_position)\n",
" days += 1\n",
" print(\"dia:\", days)\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 4. Print the solution."
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"while snail_position < well_height:\n",
" snail_position += daily_distance\n",
" \n",
" if well_height <= snail_position:\n",
" days += 1\n",
" print(\"dia:\", days)\n",
" break\n",
" \n",
" print(\"terminado dia:\", snail_position)\n",
" snail_position -= nightly_distance \n",
" print(\"final noche:\", snail_position)\n",
" days += 1\n",
" print(\"dia:\", days)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Bonus\n",
"The distance traveled by the snail each day is now defined by a list.\n",
"```\n",
"advance_cm = [30, 21, 33, 77, 44, 45, 23, 45, 12, 34, 55]\n",
"```\n",
"On the first day, the snail rises 30cm but during the night it slides 20cm. On the second day, the snail rises 21cm but during the night it slides 20cm, and so on. \n",
"\n",
"#### 1. How many days does it take for the snail to escape the well?\n",
"Follow the same guidelines as in the previous challenge.\n",
"\n",
"**Hint**: Remember that the snail gets out of the well when it surpasses the 125cm of height."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"well_height=125\n",
"advance_cm = [30, 21, 33, 77, 44, 45, 23, 45, 12, 34, 55]\n",
"nightly_distance=20\n",
"days=0\n",
"snail_position = 0"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 2. What is its maximum displacement in one day? And its minimum? Calculate the displacement using only the travel distance of the days used to get out of the well. \n",
"**Hint**: Remember that displacement means the total distance risen taking into account that the snail slides at night. "
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"maximum: 77 cm\n",
"minimum: 21 cm\n"
]
}
],
"source": [
"longitud = len(advance_cm)-1\n",
" \n",
"for i in advance_cm:\n",
" snail_position += i - nightly_distance\n",
" \n",
" del(advance_cm[longitud])\n",
" \n",
" if snail_position >= well_height:\n",
" maximum = max(advance_cm)\n",
" print(\"maximum: \", maximum,\"cm\")\n",
" minimum = min(advance_cm)\n",
" print(\"minimum: \", minimum,\"cm\")\n",
" break\n",
" \n",
" longitud -= 1\n",
" #print (longitud)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 3. What is its average progress? Take into account the snail slides at night."
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"average: 38.09090909090909\n"
]
}
],
"source": [
"advance_cm = [30, 21, 33, 77, 44, 45, 23, 45, 12, 34, 55]\n",
"well_height=125\n",
"nightly_distance=20\n",
"days=0\n",
"snail_position = 0\n",
" \n",
"for i in advance_cm:\n",
" snail_position += i - nightly_distance\n",
" \n",
" if snail_position >= well_height:\n",
" average = sum(advance_cm) / len(advance_cm)\n",
" print(\"average: \", average)\n",
" break"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### 4. What is the standard deviation of its displacement? Take into account the snail slides at night."
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"La desv. estadandar es: 19.44222209522358\n"
]
}
],
"source": [
"import numpy\n",
"\n",
"well_height=125\n",
"advance_cm = [30, 21, 33, 77, 44, 45, 23, 45, 12, 34, 55]\n",
"nightly_distance=20\n",
"contador=0\n",
"snail_position = 0\n",
"longitud = len(advance_cm)-1\n",
" \n",
"for i in advance_cm:\n",
" snail_position += i - nightly_distance\n",
" \n",
" del(advance_cm[longitud])\n",
" \n",
" if snail_position >= well_height:\n",
" print(\"La desv. estadandar es: \", numpy.std(advance_cm))\n",
" break\n",
" \n",
" longitud -= 1"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.6"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Loading