869. 重新排序得到 2 的幂枚举
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了869. 重新排序得到 2 的幂枚举相关的知识,希望对你有一定的参考价值。
https://leetcode-cn.com/problems/reordered-power-of-2/
class Solution {
public:
vector<int> check(int x)
{
vector<int>ve;
while(x) ve.push_back(x%10),x/=10;
sort(ve.begin(),ve.end());
return ve;
}
bool reorderedPowerOf2(int n) {
for(int i=1;i<=1e9;i*=2)
{
if(check(i)==check(n)) return true;
}
return false;
}
};
以上是关于869. 重新排序得到 2 的幂枚举的主要内容,如果未能解决你的问题,请参考以下文章
Leecode 869. 重新排序得到 2 的幂——Leecode每日一题系列