Sha256: 12e685808dd821a4cd2769a1a79174522176d62954571a546b535beb692111d3
Contents?: true
Size: 1.96 KB
Versions: 74
Compression:
Stored size: 1.96 KB
Contents
# Saddle Points Detect saddle points in a matrix. So say you have a matrix like so: ```text 0 1 2 |--------- 0 | 9 8 7 1 | 5 3 2 <--- saddle point at (1,0) 2 | 6 6 7 ``` It has a saddle point at (1, 0). It's called a "saddle point" because it is greater than or equal to every element in its row and less than or equal to every element in its column. A matrix may have zero or more saddle points. Your code should be able to provide the (possibly empty) list of all the saddle points for any given matrix. Note that you may find other definitions of matrix saddle points online, but the tests for this exercise follow the above unambiguous definition. * * * * To run the code in this exercise, you will only need to have [CommandBox CLI installed](https://ortus.gitbooks.io/commandbox-documentation/content/setup/installation.html). This binary runs CFML code from the command line. To run the tests, `cd` into the exercise folder and run the following: ```bash box task run TestRunner # Or start up a test watcher that will rerun when files change box task run TestRunner --:watcher ``` The tests leverage a library called TestBox which supports xUnit and BDD style of testing. All test suites will be written in the [BDD style](https://testbox.ortusbooks.com/content/primers/bdd/specs.html) which uses closures to define test specs. You won't need to worry about installing TestBox. The CLI test runner will take care of that for you. You just need to be connected to the internet the first time you run it. You can read more about it here: [https://testbox.ortusbooks.com/content/](https://testbox.ortusbooks.com/content/) ## Source J Dalbey's Programming Practice problems [http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html](http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
74 entries across 74 versions & 1 rubygems