码迷,mamicode.com
首页 > 其他好文 > 详细

【Leetcode_easy】970. Powerful Integers

时间:2019-08-07 18:49:53      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:begin   return   http   target   div   tor   ==   end   ems   

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_easy】970. Powerful Integers

标签:begin   return   http   target   div   tor   ==   end   ems   

原文地址:https://www.cnblogs.com/happyamyhope/p/11316918.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!