-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfirst_unique_character_in_a_string.dart
93 lines (71 loc) · 2.02 KB
/
first_unique_character_in_a_string.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
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
-* 387. First Unique Character in a String *-
Given a string s, find the first non-repeating character in it and return its index. If it does not exist, return -1.
Example 1:
Input: s = "leetcode"
Output: 0
Example 2:
Input: s = "loveleetcode"
Output: 2
Example 3:
Input: s = "aabb"
Output: -1
Constraints:
1 <= s.length <= 105
s consists of only lowercase English letters.
*/
import 'dart:collection';
class Solution {
int firstUniqChar(String s) {
// hashmap to store the unique values
HashMap<String, int?> map = HashMap();
// looping through each and every element in the String
for (int i = 0; i < s.length; i++) {
// assigning the int as index for every element
map[s[i]] = (map[s[i]] ?? 0) + 1;
}
// looping again
for (int i = 0; i < s.length; i++) {
// if the element matches with index value as saved above
if (map[s[i]] == 1) {
// than we will return that element
return i;
}
}
// sentinel value
return -1;
}
}
class B {
int firstUniqChar(String s) {
// index as ans
int ans = 0;
// into array list of each and every character
List<String> chars = s.split("");
// if that character is inside the array of character
for (String char in chars) {
// comparing first to last index
if (s.indexOf(char) == s.lastIndexOf(char)) {
// assigning the index to our value
return ans = s.indexOf(char);
} else {
ans = -1;
}
}
return ans;
}
}
class C {
int firstUniqChar(String s) {
// frequency of array based on the length of alphabets inn ENGLISH
List<int> freq = List.filled(26, 0);
// looping through the length of string
for (int i = 0; i < s.length; i++)
// getting the index of the each individual string character
freq[s.codeUnitAt(i) - 'a'.codeUnitAt(0)]++;
for (int i = 0; i < s.length; i++)
// if it matches with index we will return
if (freq[s.codeUnitAt(i) - 'a'.codeUnitAt(0)] == 1) return i;
return -1;
}
}