Exemplo n.º 1
0
 def test_solution_ex2(self):
     self.assertEqual(4, dt.solution([1, 2, 3]))
Exemplo n.º 2
0
 def test_solution_ex1(self):
     self.assertEqual(5, dt.solution([1, 3, 6, 4, 1, 2]))
Exemplo n.º 3
0
 def test_solution_single(self):
     self.assertEqual(2, dt.solution([1]))
Exemplo n.º 4
0
 def test_solution_single_neg(self):
     self.assertEqual(1, dt.solution([-1]))
Exemplo n.º 5
0
 def test_solution_ex3(self):
     self.assertEqual(1, dt.solution([-1, -3]))