-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_sample.py
60 lines (42 loc) · 1.41 KB
/
test_sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Desafio PUG-PE
ID: 4
Semana: 08/03/2011
Formulado por : Marcel Caraciolo
Problema:
O objetivo deste problema eh transpor uma matriz.
Seu trabalho eh construir uma funcao transpose que receba uma matriz (em formato de lista de listas) e
retorna a matriz transposta desta (em lista de listas).
Uma matriz transposta eh o resultado da troca de linhas por colunas em uma determinada matriz.
EX:
| 1 2 | | 1 3 5 |
| 3 4 | -> Tranposta -> | 2 4 6 |
| 5 6 |
>>> ret = tranpose([])
>>> ret
[]
>>> ret = tranpose([[1]])
>>> ret
[[1]]
>>> ret = transpose([[1,2]])
>>> ret
[[1],[2]]
>>> ret = tranpose([[1,2], [3,4], [5,6]])
>>> ret
[[1,3,5], [2,4,6]]
Seu trabalho eh construir essa funcao. Favor utilizar Testes usando doctest ou UnitTest para validar sua solucao.
"""
transpose = lambda lista: map(list, zip(*lista))
import unittest
class SampleTest(unittest.TestCase):
def test_empty_list(self):
self.assertEqual([],
transpose([]))
def test_unit_list(self):
self.assertEqual([[1]], transpose([[1]]))
def test_simple_List(self):
self.assertEqual([[1],[2]], transpose([[1,2]]))
def test_complex_list(self):
self.assertEqual([[1,3,5],[2,4,6]], transpose([[1,2], [3,4], [5,6]]) )
if __name__ == '__main__':
unittest.main()