From 890ce894ccaf044643d083cc367cc8a3c4fc27b5 Mon Sep 17 00:00:00 2001 From: Arthur Date: Mon, 18 Nov 2019 19:34:23 -0500 Subject: [PATCH] fix: correct typos in incidence matrix instruction (#37779) --- .../data-structures/incidence-matrix.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/08-coding-interview-prep/data-structures/incidence-matrix.english.md b/curriculum/challenges/english/08-coding-interview-prep/data-structures/incidence-matrix.english.md index c70a131fa2..fef72bb94e 100644 --- a/curriculum/challenges/english/08-coding-interview-prep/data-structures/incidence-matrix.english.md +++ b/curriculum/challenges/english/08-coding-interview-prep/data-structures/incidence-matrix.english.md @@ -42,7 +42,7 @@ Graphs can also have weights on their edges. So far, we have unw ## Instructions
Create an incidence matrix of an undirected graph with five nodes and four edges. This matrix should be in a multi-dimensional array. -These five nodes have relationships following relationships. The first edge is between the first and second node. The second edge is between the second and third node. The third edge is between the third and fifth node. And four edge is between the fourth and second node. All edge weights are one and the edge order matters. +These five nodes have the following relationships. The first edge is between the first and second node. The second edge is between the second and third node. The third edge is between the third and fifth node. The fourth edge is between the fourth and second node. All edge weights are one and the edge order matters.
## Tests