Skip to content

Commit ec65683

Browse files
committed
typos
1 parent 10cf823 commit ec65683

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Linked Lists/Linked Lists Interview Problems/Linked List Interview Problems - SOLUTIONS/.ipynb_checkpoints/Linked List Reversal - SOLUTION-checkpoint.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"## Problem\n",
1010
"\n",
11-
"Write a function ot reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
11+
"Write a function to reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
1212
"\n",
1313
"You are given the example Linked List Node class:"
1414
]
@@ -41,7 +41,7 @@
4141
"\n",
4242
"In one pass from head to tail of our input list, we will point each node's next pointer to the previous element.\n",
4343
"\n",
44-
"Make sure to copy current.next_node into next_node **before** setting current.next_node to previous. Let's see thise solution coded out:"
44+
"Make sure to copy current.next_node into next_node **before** setting current.next_node to previous. Let's see this solution coded out:"
4545
]
4646
},
4747
{
@@ -259,7 +259,7 @@
259259
"name": "python",
260260
"nbconvert_exporter": "python",
261261
"pygments_lexer": "ipython2",
262-
"version": "2.7.10"
262+
"version": "2.7.11"
263263
}
264264
},
265265
"nbformat": 4,

Linked Lists/Linked Lists Interview Problems/Linked List Interview Problems - SOLUTIONS/Linked List Reversal - SOLUTION.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"## Problem\n",
1010
"\n",
11-
"Write a function ot reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
11+
"Write a function to reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
1212
"\n",
1313
"You are given the example Linked List Node class:"
1414
]
@@ -41,7 +41,7 @@
4141
"\n",
4242
"In one pass from head to tail of our input list, we will point each node's next pointer to the previous element.\n",
4343
"\n",
44-
"Make sure to copy current.next_node into next_node **before** setting current.next_node to previous. Let's see thise solution coded out:"
44+
"Make sure to copy current.next_node into next_node **before** setting current.next_node to previous. Let's see this solution coded out:"
4545
]
4646
},
4747
{
@@ -259,7 +259,7 @@
259259
"name": "python",
260260
"nbconvert_exporter": "python",
261261
"pygments_lexer": "ipython2",
262-
"version": "2.7.10"
262+
"version": "2.7.11"
263263
}
264264
},
265265
"nbformat": 4,

Linked Lists/Linked Lists Interview Problems/Linked List Interview Problems /.ipynb_checkpoints/Linked List Reversal -checkpoint.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"## Problem\n",
1010
"\n",
11-
"Write a function ot reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
11+
"Write a function to reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
1212
"\n",
1313
"You are given the example Linked List Node class:"
1414
]
@@ -59,7 +59,7 @@
5959
"\n",
6060
"**Note, this isn't a classic run cell for testing your solution, please read the statements below carefully**\n",
6161
"\n",
62-
"You should be able to easily test your own solution to make sure it works. Given the short list a,b,c,d with values 1,2,3,4. Check the effect of your reverse function and maek sure the results match the logic here below:"
62+
"You should be able to easily test your own solution to make sure it works. Given the short list a,b,c,d with values 1,2,3,4. Check the effect of your reverse function and make sure the results match the logic here below:"
6363
]
6464
},
6565
{

Linked Lists/Linked Lists Interview Problems/Linked List Interview Problems /Linked List Reversal .ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"\n",
99
"## Problem\n",
1010
"\n",
11-
"Write a function ot reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
11+
"Write a function to reverse a Linked List in place. The function will take in the head of the list as input and return the new head of the list.\n",
1212
"\n",
1313
"You are given the example Linked List Node class:"
1414
]
@@ -59,7 +59,7 @@
5959
"\n",
6060
"**Note, this isn't a classic run cell for testing your solution, please read the statements below carefully**\n",
6161
"\n",
62-
"You should be able to easily test your own solution to make sure it works. Given the short list a,b,c,d with values 1,2,3,4. Check the effect of your reverse function and maek sure the results match the logic here below:"
62+
"You should be able to easily test your own solution to make sure it works. Given the short list a,b,c,d with values 1,2,3,4. Check the effect of your reverse function and make sure the results match the logic here below:"
6363
]
6464
},
6565
{

0 commit comments

Comments
 (0)