예제 #1
0
파일: test.py 프로젝트: teruhirok/python
 def test2(self):
     expect = 0.25000
     actual = Solution.myPow("", 2.00000, -2)
     self.assertEqual(expect, actual)
예제 #2
0
파일: test.py 프로젝트: teruhirok/python
 def test0(self):
     expect = 1024.00000
     actual = Solution.myPow("", 2.00000, 10)
     self.assertEqual(expect, actual)
예제 #3
0
파일: test.py 프로젝트: teruhirok/python
 def test1(self):
     expect = 9.26100
     # expect = 9.261000000000001
     actual = Solution.myPow("", 2.10000, 3)
     self.assertEqual(expect, actual)