Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 82d78c6

Browse files
chinmayapancholi13reachtarunhere
authored andcommitted
Fixes typos in the search.ipynb (aimacode#307)
1 parent e59faf6 commit 82d78c6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

search.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
"source": [
2929
"## Review\n",
3030
"\n",
31-
"Here, we learn about problem solving. Building goal-based agents that can plan ahead to solve problems, in particular navigation problem / route finding problem. First, we will start the problem solving by precicly defining **problems** and their **solutions**. We will look at several general-purpose search algorithms. Broadly, search algorithms are classified into two types:\n",
31+
"Here, we learn about problem solving. Building goal-based agents that can plan ahead to solve problems, in particular navigation problem / route finding problem. First, we will start the problem solving by precisely defining **problems** and their **solutions**. We will look at several general-purpose search algorithms. Broadly, search algorithms are classified into two types:\n",
3232
"\n",
33-
"* **Uninformed search algorithms**: Search algorithms which explores the search space without having any information aboout the problem other than its definition.\n",
33+
"* **Uninformed search algorithms**: Search algorithms which explores the search space without having any information about the problem other than its definition.\n",
3434
"* Examples:\n",
3535
" 1. Breadth First Search\n",
3636
" 2. Depth First Search\n",
@@ -96,7 +96,7 @@
9696
"cell_type": "markdown",
9797
"metadata": {},
9898
"source": [
99-
"We will use the abstract class `Problem` to define out real **problem** named `GraphProblem`. You can see how we defing `GraphProblem` by running the next cell."
99+
"We will use the abstract class `Problem` to define our real **problem** named `GraphProblem`. You can see how we defing `GraphProblem` by running the next cell."
100100
]
101101
},
102102
{
@@ -156,7 +156,7 @@
156156
"collapsed": true
157157
},
158158
"source": [
159-
"It is pretty straight forward to understand this `romania_map`. The first node **Arad** has three neighbours named **Zerind**, **Sibiu**, **Timisoara**. Each of these nodes are 75, 140, 118 units apart from **Arad** respectively. And the same goes with other nodes.\n",
159+
"It is pretty straightforward to understand this `romania_map`. The first node **Arad** has three neighbours named **Zerind**, **Sibiu**, **Timisoara**. Each of these nodes are 75, 140, 118 units apart from **Arad** respectively. And the same goes with other nodes.\n",
160160
"\n",
161161
"And `romania_map.locations` contains the positions of each of the nodes. We will use the straight line distance (which is different from the one provided in `romania_map`) between two cities in algorithms like A\\*-search and Recursive Best First Search.\n",
162162
"\n",
@@ -392,7 +392,7 @@
392392
"* Currently exploring node - <font color='red'>red</font>\n",
393393
"* Already explored nodes - <font color='gray'>gray</font>\n",
394394
"\n",
395-
"Now, we will define some helper methods to display interactive buttons ans sliders when visualising search algorithms."
395+
"Now, we will define some helper methods to display interactive buttons and sliders when visualising search algorithms."
396396
]
397397
},
398398
{

0 commit comments

Comments
 (0)