【leetcode】Contains Duplicate【java】

来源:互联网 发布:华为算法工程师面试题 编辑:程序博客网 时间:2024/06/14 02:36

题目:

Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.

思路:

1.对数组排序

2.比较数组是否与相邻元素相等

代码:


0 0
原创粉丝点击