leetcode#372 Super Pow

정은경·2022년 6월 27일
0

알고리즘

목록 보기
110/125

1. 문제

2. 나의 풀이

class Solution:
    def superPow(self, a: int, b: List[int]) -> int:
        if a == 1:
            return a
        
        b.sort(reverse=True)
        max_num = int("".join([str(x) for x in b]))
        
        return pow(a, max_num, 1337)

Reference

profile
#의식의흐름 #순간순간 #생각의스냅샷

0개의 댓글