-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoreAlgoTest.py
14 lines (12 loc) · 1.07 KB
/
coreAlgoTest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import unittest
from coreAlgo import Solution
soln = Solution()
class TestCoreAlgo(unittest.TestCase):
def test_classic(self):
sample = [["5","3",".",".","7",".",".",".","."],["6",".",".","1","9","5",".",".","."],[".","9","8",".",".",".",".","6","."],["8",".",".",".","6",".",".",".","3"],["4",".",".","8",".","3",".",".","1"],["7",".",".",".","2",".",".",".","6"],[".","6",".",".",".",".","2","8","."],[".",".",".","4","1","9",".",".","5"],[".",".",".",".","8",".",".","7","9"]]
soln.solveRec(sample, 0, 0)
ans = [['5', '3', '4', '6', '7', '8', '9', '1', '2'], ['6', '7', '2', '1', '9', '5', '3', '4', '8'], ['1', '9', '8', '3', '4', '2', '5', '6', '7'], ['8', '5', '9', '7', '6', '1', '4', '2', '3'], ['4', '2', '6', '8', '5', '3', '7', '9', '1'], ['7', '1', '3', '9', '2', '4', '8', '5', '6'], ['9', '6', '1', '5', '3', '7', '2', '8', '4'], ['2', '8', '7', '4', '1', '9', '6', '3', '5'], ['3', '4', '5', '2', '8', '6', '1', '7', '9']]
for i in range(len(sample)):
self.assertEqual(sample[i], ans[i])
if __name__ == '__main__':
unittest.main()