码迷,mamicode.com
首页 > 其他好文 > 详细

剑指Offer 16

时间:2019-06-12 22:53:13      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:self   style   ase   lse   coding   sel   als   ret   else   

 1 # -*- coding:utf-8 -*-
 2 class Solution:
 3     def Power(self, base, exponent):
 4         if exponent == 0:
 5             return 1
 6         if exponent == 1:
 7             return base
 8         op = False
 9         if exponent < 0:
10             op = True
11             exponent = -exponent
12         result = 1
13         if exponent % 2 == 0:
14             result = self.Power(base * base,exponent // 2)
15         else:
16             result = self.Power(base * base,exponent // 2) * base
17         if op:
18             result = 1 / result
19         return result
20         # write code here

 

剑指Offer 16

标签:self   style   ase   lse   coding   sel   als   ret   else   

原文地址:https://www.cnblogs.com/asenyang/p/11013104.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!