1 class Solution:
2     def superPow(self, a: int, b: List[int]) -> int:
3         return pow(a,int(''.join(map(str,b))),1337)

算法思路:直接调用python的pow函数。

学有余力的同学,可以尝试自己实现pow()函数的逻辑。

posted on 2020-04-09 10:18  Sempron2800+  阅读(128)  评论(0编辑  收藏  举报