def test_puzzle_1(self):
     key = 'iwrupvqb'
     result = get_suffix_num_resulting_in_five_zeroes(key)
     self.assertEqual(346386, result)
 def test_1(self):
     key = 'abcdef'
     result = get_suffix_num_resulting_in_five_zeroes(key)
     self.assertEqual(609043, result)
 def test_2(self):
     key = 'pqrstuv'
     result = get_suffix_num_resulting_in_five_zeroes(key)
     self.assertEqual(1048970, result)