コード例 #1
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part2_d_FAIL(self):
     code = [3, 3, 1107, -1, 8, 3, 4, 3, 99]
     chall = CPU(False)
     chall.run(code)
     chall.input(8)
     chall.clean()
     self.assertEqual(chall.e_output, [0])
コード例 #2
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part1_a(self):
     chall = CPU(False)
     code = [3, 0, 4, 0, 99]
     chall.run(code)
     chall.input(55)
     chall.clean()
     self.assertEqual(chall.e_output, [55])
コード例 #3
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part1_b(self):
     chall = CPU(False)
     code = [1002, 4, 3, 4, 33]
     chall.run(code)
     chall.input(55)
     chall.clean()
     self.assertEqual(chall.code[4], 99)
コード例 #4
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part2_b_FAIL(self):
     code = [3, 9, 7, 9, 10, 9, 4, 9, 99, -1, 8]
     chall = CPU(False)
     chall.run(code)
     chall.input(8)
     chall.clean()
     self.assertEqual(chall.e_output, [0])
コード例 #5
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part2_e_FAIL(self):
     code = [3, 12, 6, 12, 15, 1, 13, 14, 13, 4, 13, 99, -1, 0, 1, 9]
     chall = CPU(False)
     chall.run(code)
     chall.input(0)
     chall.clean()
     self.assertEqual(chall.e_output, [0])
コード例 #6
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part2_d_PASS(self):
     """
     3,3,1107,-1,8,3,4,3,99 - Using immediate mode, consider whether the input is less than 8; output 1 (if it is) or 0 (if it is not).
     """
     code = [3, 3, 1107, -1, 8, 3, 4, 3, 99]
     chall = CPU(False)
     chall.run(code)
     chall.input(7)
     chall.clean()
     self.assertEqual(chall.e_output, [1])
コード例 #7
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part2_b_PASS(self):
     """
     3,9,7,9,10,9,4,9,99,-1,8 - Using position mode, consider whether the input is less than 8; output 1 (if it is) or 0 (if it is not).
     """
     code = [3, 9, 7, 9, 10, 9, 4, 9, 99, -1, 8]
     chall = CPU(False)
     chall.run(code)
     chall.input(7)
     chall.clean()
     self.assertEqual(chall.e_output, [1])
コード例 #8
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part2_e_PASS(self):
     """
     Here are some jump tests that take an input, then output 0 if the input was zero or 1 if the input was non-zero:
     (using position mode)
     """
     code = [3, 12, 6, 12, 15, 1, 13, 14, 13, 4, 13, 99, -1, 0, 1, 9]
     chall = CPU(False)
     chall.run(code)
     chall.input(1)
     chall.clean()
     self.assertEqual(chall.e_output, [1])
コード例 #9
0
ファイル: test_5.py プロジェクト: rgooler/AOC2019
 def test_part2_f_GT(self):
     """
     The above example program uses an input instruction to ask for a single number. 
     The program will then output 999 if the input value is below 8, 
     output 1000 if the input value is equal to 8, 
     or output 1001 if the input value is greater than 8.
     """
     code = [
         3, 21, 1008, 21, 8, 20, 1005, 20, 22, 107, 8, 21, 20, 1006, 20, 31,
         1106, 0, 36, 98, 0, 0, 1002, 21, 125, 20, 4, 20, 1105, 1, 46, 104,
         999, 1105, 1, 46, 1101, 1000, 1, 20, 4, 20, 1105, 1, 46, 98, 99
     ]
     chall = CPU(False)
     chall.run(code)
     chall.input(9)
     chall.clean()
     self.assertEqual(chall.e_output, [1001])
コード例 #10
0
 def test_part1_a(self):
     chall = CPU(False)
     code = [1, 0, 0, 0, 99]
     chall.run(code)
     chall.clean()
     self.assertEqual(chall.code, [2, 0, 0, 0, 99])
コード例 #11
0
 def test_part2_a(self):
     chall = CPU(False)
     code = [99, 12, 2]
     err = chall.run(code)
     chall.clean()
     self.assertEqual(err, 1202)
コード例 #12
0
 def test_part1_d(self):
     chall = CPU(False)
     code = [1, 1, 1, 4, 99, 5, 6, 0, 99]
     chall.run(code)
     chall.clean()
     self.assertEqual(chall.code, [30, 1, 1, 4, 2, 5, 6, 0, 99])
コード例 #13
0
 def test_part1_c(self):
     chall = CPU(False)
     code = [2, 4, 4, 5, 99, 0]
     chall.run(code)
     chall.clean()
     self.assertEqual(chall.code, [2, 4, 4, 5, 99, 9801])
コード例 #14
0
 def test_part1_b(self):
     chall = CPU(False)
     code = [2, 3, 0, 3, 99]
     chall.run(code)
     chall.clean()
     self.assertEqual(chall.code, [2, 3, 0, 6, 99])