加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Unit Digit of a raised to power b.py 306 Bytes
一键复制 编辑 原始数据 按行查看 历史
def last_digit(a, b):
if b==0: #This Code assumes that 0^0 is 1
return 1
elif a%10 in [0,5,6,1]:
return a%10
elif b%4==0:
return ((a%10)**4)%10
else:
return ((a%10)**(b%4))%10
#Courtesy to https://brilliant.org/wiki/finding-the-last-digit-of-a-power/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化