Leno_B
Leno_B
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Leno_B的博客
全部文章
/ 题解
(共1篇)
题解 | #数值的整数次方#
非递归的快速幂/位运算 class Solution: def Power(self , base: float, exponent: int) -> float: if exponent<0: # 如果幂小于0 exponent = ...
Python3
数学
2022-03-04
0
317