Leetcode 970. Powerful Integers
Posted 周洋的Blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 970. Powerful Integers相关的知识,希望对你有一定的参考价值。
Brute Force(暴力)
class Solution(object): def powerfulIntegers(self, x, y, bound): """ :type x: int :type y: int :type bound: int :rtype: List[int] """ ans=[] for i in range(20): for j in range(20): a=x**i+y**j if a<=bound: ans.append(a) return list(set(ans))
以上是关于Leetcode 970. Powerful Integers的主要内容,如果未能解决你的问题,请参考以下文章
leetcode970. Powerful Integers
Leetcode 970. Powerful Integers
Leetcode_easy970. Powerful Integers