372. Super Pow [Medium] 数学

372. Super Pow class Solution(object): def superPow(self, a, b): """ :type a: int :type b: List[int] :rtype: int """ b_num = 0 for i in b:
相关文章
相关标签/搜索