Skip to content

Commit a6a7e10

Browse files
authored
Change saddle point references to row, column (exercism#1948)
1 parent 4bcdfc3 commit a6a7e10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/saddle-points/description.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ So say you have a matrix like so:
88
1 2 3
99
|---------
1010
1 | 9 8 7
11-
2 | 5 3 2 <--- saddle point at column 1, row 2, with value 5
11+
2 | 5 3 2 <--- saddle point at row 2, column 1, with value 5
1212
3 | 6 6 7
1313
```
1414

15-
It has a saddle point at column 1, row 2.
15+
It has a saddle point at row 2, column 1.
1616

1717
It's called a "saddle point" because it is greater than or equal to
1818
every element in its row and less than or equal to every element in

0 commit comments

Comments
 (0)