-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathContainsDuplicate.php
56 lines (48 loc) · 1.14 KB
/
ContainsDuplicate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
declare(strict_types=1);
namespace leetcode;
class ContainsDuplicate
{
public static function containsDuplicate(array $nums): bool
{
if (empty($nums)) {
return false;
}
$n = count($nums);
for ($i = 0; $i < $n; $i++) {
for ($j = $i + 1; $j < $n; $j++) {
if ($nums[$i] === $nums[$j]) {
return true;
}
}
}
return false;
}
public static function containsDuplicate2(array $nums): bool
{
if (empty($nums)) {
return false;
}
sort($nums);
for ($i = 1, $n = count($nums); $i < $n; $i++) {
if ($nums[$i] === $nums[$i - 1]) {
return true;
}
}
return false;
}
public static function containsDuplicate3(array $nums): bool
{
if (empty($nums)) {
return false;
}
$map = [];
foreach ($nums as $key => $num) {
if (isset($map[$num])) {
return true;
}
$map[$num] = $key;
}
return false;
}
}