-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathValidAnagram.php
53 lines (47 loc) · 1.17 KB
/
ValidAnagram.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
<?php
declare(strict_types=1);
namespace leetcode;
class ValidAnagram
{
public static function isAnagram(string $s, string $t): bool
{
[$m, $n] = [strlen($s), strlen($t)];
if ($m !== $n) {
return false;
}
$source = $target = [];
for ($i = 0; $i < $m; $i++) {
$source[] = $s[$i];
}
for ($i = 0; $i < $n; $i++) {
$target[] = $t[$i];
}
sort($source);
sort($target);
return $source === $target;
}
public static function isAnagram2(string $s, string $t): bool
{
[$m, $n] = [strlen($s), strlen($t)];
if ($m !== $n) {
return false;
}
$map = array_fill(0, 26, 0);
for ($i = 0; $i < $m; $i++) {
$key = ord($s[$i]) - ord('a');
if (isset($map[$key])) {
$map[$key]++;
}
}
for ($i = 0; $i < $n; $i++) {
$key = ord($t[$i]) - ord('a');
if (isset($map[$key])) {
$map[$key]--;
}
if ($map[$key] < 0) {
return false;
}
}
return true;
}
}