LC 存在重复元素
Posted yangbocsu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LC 存在重复元素相关的知识,希望对你有一定的参考价值。
LC 存在重复元素
给定一个整数数组,判断是否存在重复元素。
如果存在一值在数组中出现至少两次,函数返回 true 。如果数组中每个元素都不相同,则返回 false 。
中规中矩的思路,超时!!!
class Solution {
public boolean containsDuplicate(int[] nums) {
boolean isFlag = false;
for (int i = 0; i < nums.length - 1; i++)
{
int temp = nums[i];
for (int j = i+1; j < nums.length; j++)
{
if (nums[i] == nums[j])
{
isFlag = true;
break;
}
}
if (isFlag ==true)
break;
}
return isFlag;
}
}
以上是关于LC 存在重复元素的主要内容,如果未能解决你的问题,请参考以下文章