class Solution(object):
def superPow(self, a, b):
"""
:type a: int
:type b: List[int]
:rtype: int
"""
return pow(a,int(''.join(map(str,b))),1337)
class Solution(object):
def superPow(self, a, b):
"""
:type a: int
:type b: List[int]
:rtype: int
"""
return pow(a,int(''.join(map(str,b))),1337)
本文标题:372. Super Pow
本文链接:https://www.haomeiwen.com/subject/eavlvttx.html
网友评论