LeetCode 1346. Check If N and Its Double Exist
Posted Shendu.cc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 1346. Check If N and Its Double Exist相关的知识,希望对你有一定的参考价值。
class Solution {
public:
bool checkIfExist(vector<int>& arr) {
for(int i=0;i<arr.size();i++)
{
for(int j=0;j<arr.size();j++)
{
if(i==j)
continue;
if(arr[i]==arr[j]*2)
return true;
}
}
return false;
}
};
以上是关于LeetCode 1346. Check If N and Its Double Exist的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode --- 1346. Check If N and Its Double Exist 解题报告
[LeetCode] 1346. 检查整数及其两倍数是否存在
⭐算法入门⭐《二分枚举》简单04 —— LeetCode 1346. 检查整数及其两倍数是否存在
2020-02-111346. Check If N and Its Double Exist