You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While doing this exercise I was stuck on a test, when I noticed that this introduction doesn't fit the existing scenario.
The test `Can identify multiple saddle points` has the following matrix:
`Matrix(List(List(4, 5, 4), List(3, 5, 5), List(1, 5, 4)))`
This is meant to produce `Set((0, 1), (1, 1), (2, 1)))`. This implies that in:
```
4 5 4
3 5 5
1 5 4
```
every tree in the middle column is valid; this contradicts the introduction that said that the tree must be **taller than**/**shorter than** the east-west and north-south line respectively.
0 commit comments