Exemplo n.º 1
0
	def test_case_2(self):
		self.assertEqual(maxSubsetSumNoAdjacent([1]), 1)
Exemplo n.º 2
0
	def test_case_13(self):
		self.assertEqual(maxSubsetSumNoAdjacent([7, 10, 12, 7, 9, 14, 15, 16, 25, 20, 4]), 72)
Exemplo n.º 3
0
	def test_case_1(self):
		self.assertEqual(maxSubsetSumNoAdjacent([]), 0)
Exemplo n.º 4
0
	def test_case_11(self):
		self.assertEqual(maxSubsetSumNoAdjacent([30, 25, 50, 55, 100]), 180)
Exemplo n.º 5
0
	def test_case_12(self):
		self.assertEqual(maxSubsetSumNoAdjacent([30, 25, 50, 55, 100, 120]), 205)
Exemplo n.º 6
0
	def test_case_9(self):
		self.assertEqual(maxSubsetSumNoAdjacent([10, 5, 20, 25, 15, 5, 5, 15, 3, 15, 5, 5, 15]), 90)
Exemplo n.º 7
0
	def test_case_10(self):
		self.assertEqual(maxSubsetSumNoAdjacent([125, 210, 250, 120, 150, 300]), 675)
Exemplo n.º 8
0
	def test_case_7(self):
		self.assertEqual(maxSubsetSumNoAdjacent([4, 3, 5, 200, 5, 3]), 207)
Exemplo n.º 9
0
	def test_case_6(self):
		self.assertEqual(maxSubsetSumNoAdjacent([7, 10, 12, 7, 9, 14]), 33)
Exemplo n.º 10
0
	def test_case_5(self):
		self.assertEqual(maxSubsetSumNoAdjacent([1, 15, 3]), 15)
Exemplo n.º 11
0
	def test_case_4(self):
		self.assertEqual(maxSubsetSumNoAdjacent([1, 2, 3]), 4)
Exemplo n.º 12
0
	def test_case_3(self):
		self.assertEqual(maxSubsetSumNoAdjacent([1, 2]), 2)