美文网首页
存在重复

存在重复

作者: 百事可乐99 | 来源:发表于2019-07-21 20:03 被阅读0次

    给定一个整数数组,判断是否存在重复元素。
    如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。

    • 示例1:

    输入: [1,2,3,1]
    输出: true

    • 示例2:

    输入: [1,2,3,4]
    输出: false

    • 示例3:

    输入: [1,1,1,3,3,4,3,2,4,2]
    输出: true

    解答:

        public static boolean test(int[] a){
            int temp;
            for (int i = 0; i <a.length ; i++) {
                temp = a[i];
                for (int j = i + 1; j < a.length; j++) {
                    if (temp == a[j]){
                        return true;
                    }
                }
            }
    
            return false;
        }
    

    相关文章

      网友评论

          本文标题:存在重复

          本文链接:https://www.haomeiwen.com/subject/vjmvlctx.html