Leetcode_easy970. Powerful Integers

Posted happyamyhope

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode_easy970. Powerful Integers相关的知识,希望对你有一定的参考价值。

problem

970. Powerful Integers

solution:

class Solution 
public:
    vector<int> powerfulIntegers(int x, int y, int bound) 
        unordered_set<int> tmp;
        for(int a=1; a<bound; a*=x)//
        
            for(int b=1; a+b<=bound; b*=y)
            
                tmp.insert(a+b);//
                if(y==1) break;//
            
            if(x==1) break;
        
        return vector<int>(tmp.begin(), tmp.end());
    

;

 

参考

1. Leetcode_easy_970. Powerful Integers;

以上是关于Leetcode_easy970. Powerful Integers的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode_easy836. Rectangle Overlap

Leetcode_easy867. Transpose Matrix

Leetcode_easy868. Binary Gap

Leetcode_easy860. Lemonade Change

Leetcode_easy859. Buddy Strings

Leetcode_easy994. Rotting Oranges