Sha256: 7bff9eaf8bbf0ac4c23e8b3eb20c60cff897ba0d453631681cec1c6f202d4b16

Contents?: true

Size: 1.33 KB

Versions: 20

Compression:

Stored size: 1.33 KB

Contents

"""Tests for the saddle-points exercise

Implementation note:
The saddle_points function must validate the input matrix and raise a
ValueError with a meaningful error message if the matrix turns out to be
irregular.
"""
import unittest

from saddle_points import saddle_points


# Tests adapted from `problem-specifications//canonical-data.json` @ v1.0.0

class SaddlePointTest(unittest.TestCase):
    def test_one_saddle(self):
        inp = [[9, 8, 7], [5, 3, 2], [6, 6, 7]]
        self.assertEqual(saddle_points(inp), set([(1, 0)]))

    def test_empty_matrix(self):
        self.assertEqual(saddle_points([]), set())

    def test_no_saddle(self):
        inp = [[1, 2, 3], [3, 1, 2], [2, 3, 1]]
        self.assertEqual(saddle_points(inp), set())

    def test_mult_saddle(self):
        inp = [[4, 5, 4], [3, 5, 5], [1, 5, 4]]
        ans = set([(0, 1), (1, 1), (2, 1)])
        self.assertEqual(saddle_points(inp), ans)

    def test_indentify_saddle_bottom_right_corner(self):
        inp = [[8, 7, 9], [6, 7, 6], [3, 2, 5]]
        ans = set([(2, 2)])
        self.assertEqual(saddle_points(inp), ans)

    # Additional tests for this track

    def test_irregular_matrix(self):
        inp = [[3, 2, 1], [0, 1], [2, 1, 0]]
        with self.assertRaises(ValueError):
            saddle_points(inp)


if __name__ == '__main__':
    unittest.main()

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
trackler-2.2.1.74 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.73 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.72 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.71 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.70 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.69 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.68 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.67 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.66 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.65 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.64 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.63 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.62 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.61 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.60 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.59 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.58 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.57 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.56 tracks/python/exercises/saddle-points/saddle_points_test.py
trackler-2.2.1.55 tracks/python/exercises/saddle-points/saddle_points_test.py