-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvalid_anagram.dart
80 lines (58 loc) · 1.84 KB
/
valid_anagram.dart
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
-* Valid Anagram *-
Given two strings s and t, return true if t is an anagram of s, and false otherwise.
An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.
Example 1:
Input: s = "anagram", t = "nagaram"
Output: true
Example 2:
Input: s = "rat", t = "car"
Output: false
Constraints:
1 <= s.length, t.length <= 5 * 104
s and t consist of lowercase English letters.
Follow up: What if the inputs contain Unicode characters? How would you adapt your solution to such a case?
*/
class A {
bool isAnagram(String s, String t) {
if (s.length != t.length) return false;
final List<String> listOne = s.split('')..sort();
final List<String> listTwo = t.split('')..sort();
return listOne.join() == listTwo.join();
}
}
class B {
bool isAnagram(String s, String t) {
if (s.length != t.length) return false;
final List<String> listOne = s.split('');
final List<String> listTwo = t.split('');
for (int i = 0; i < listOne.length; i++) {
int index = listTwo.indexWhere((element) => element == listOne[i]);
if (index >= 0) {
listTwo.removeAt(index);
} else {
return false;
}
}
return true;
}
}
class C {
bool isAnagram(String s, String t) {
if (s.length != t.length) return false;
final Map<String, int> mapOne = {};
final Map<String, int> mapTwo = {};
for (int i = 0; i < s.length; i++) {
mapOne[s[i]] = (mapOne[s[i]] ?? 0) + 1;
mapTwo[t[i]] = (mapTwo[t[i]] ?? 0) + 1;
}
final mapOneKeys = mapOne.keys.toList();
final mapOneValues = mapOne.values.toList();
for (int i = 0; i < mapOne.length; i++) {
final key = mapOneKeys[i];
final value = mapOneValues[i];
if (mapTwo[key] != value) return false;
}
return true;
}
}