Ejemplo n.º 1
0
 def test_spiral_of_size_4(self):
     self.assertEqual(spiral_matrix(4), [
         [1,  2,  3,  4],
         [12, 13, 14, 5],
         [11, 16, 15, 6],
         [10, 9,  8,  7]
     ])
Ejemplo n.º 2
0
def test_spiral_matrix_4():
    n = 2
    expected = [
            [4, 3],
            [1, 2],
            ]
    assert expected == spiral_matrix(n)
Ejemplo n.º 3
0
 def test_spiral_of_size_5(self):
     self.assertEqual(spiral_matrix(5), [
         [1,  2,  3,  4,  5],
         [16, 17, 18, 19, 6],
         [15, 24, 25, 20, 7],
         [14, 23, 22, 21, 8],
         [13, 12, 11, 10, 9]
     ])
Ejemplo n.º 4
0
def test_spiral_matrix_2():
    n = 3
    expected = [
            [9, 8, 7],
            [2, 1, 6],
            [3, 4, 5],
            ]
    assert expected == spiral_matrix(n)
Ejemplo n.º 5
0
def test_spiral_matrix_3():
    n = 5
    expected = [
            [25, 24, 23, 22, 21],
            [10,  9,  8,  7, 20],
            [11,  2,  1,  6, 19],
            [12,  3,  4,  5, 18],
            [13, 14, 15, 16, 17]
            ]
    assert expected == spiral_matrix(n)
Ejemplo n.º 6
0
 def test_spiral_of_size_6(self):
     self.assertEqual(
         spiral_matrix(6),
         [
             [1, 2, 3, 4, 5, 6],
             [20, 21, 22, 23, 24, 7],
             [19, 32, 33, 34, 25, 8],
             [18, 31, 36, 35, 26, 9],
             [17, 30, 29, 28, 27, 10],
             [16, 15, 14, 13, 12, 11]
         ],
     )
Ejemplo n.º 7
0
 def test_spiral_of_size_10(self):
     self.assertEqual(
         spiral_matrix(10),
         [
             [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
             [36, 37, 38, 39, 40, 41, 42, 43, 44, 11],
             [35, 64, 65, 66, 67, 68, 69, 70, 45, 12],
             [34, 63, 84, 85, 86, 87, 88, 71, 46, 13],
             [33, 62, 83, 96, 97, 98, 89, 72, 47, 14],
             [32, 61, 82, 95, 100, 99, 90, 73, 48, 15],
             [31, 60, 81, 94, 93, 92, 91, 74, 49, 16],
             [30, 59, 80, 79, 78, 77, 76, 75, 50, 17],
             [29, 58, 57, 56, 55, 54, 53, 52, 51, 18],
             [28, 27, 26, 25, 24, 23, 22, 21, 20, 19]
         ],
     )
def test_different_spiral():
    matrix = [[1, 2, 3, 4],[5, 6, 7, 8],[9,10,11,12]]
    output = [1, 2, 3, 4, 8, 12, 11, 10, 9, 5, 6, 7]
    assert spiral_matrix(matrix) == output
def test_simple_spiral():
    matrix = [[ 1, 2, 3 ],[ 4, 5, 6 ],[ 7, 8, 9 ]]
    output = [1, 2, 3, 6, 9, 8, 7, 4, 5]
    assert spiral_matrix(matrix) == output
def test_empty_matrix():
    matrix = []
    output = []
    assert spiral_matrix(matrix) == output
Ejemplo n.º 11
0
 def test_empty_spiral(self):
     self.assertEqual(spiral_matrix(0), [])
Ejemplo n.º 12
0
 def test_4x4(self):
     expected = [[1, 2, 3, 4], [12, 13, 14, 5], [11, 16, 15, 6],
                 [10, 9, 8, 7]]
     self.assertEqual(spiral_matrix(4), expected)
Ejemplo n.º 13
0
 def test_spiral_of_size_2(self):
     self.assertEqual(spiral_matrix(2), [[1, 2], [4, 3]])
Ejemplo n.º 14
0
 def test_trivial_spiral(self):
     self.assertEqual(spiral_matrix(1), [[1]])
Ejemplo n.º 15
0
def test_spiral_matrix_1():
    n = 1
    expected = [[1]]
    assert expected == spiral_matrix(n)
Ejemplo n.º 16
0
 def test_spiral_of_size_3(self):
     self.assertEqual(spiral_matrix(3), [[1, 2, 3], [8, 9, 4], [7, 6, 5]])
Ejemplo n.º 17
0
 def test_5x5(self):
     expected = [[1, 2, 3, 4, 5], [16, 17, 18, 19, 6], [15, 24, 25, 20, 7],
                 [14, 23, 22, 21, 8], [13, 12, 11, 10, 9]]
     self.assertEqual(spiral_matrix(5), expected)