-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstringInts.js
272 lines (211 loc) · 6.39 KB
/
stringInts.js
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
//return first non-repeating char - O notation = O(2n) so O(n)
const firstNonRepeat = (string) => {
let charCount = {};
if (!string) {
return "No string input.";
}
for (let i = 0; i < string.length; i++) {
let char = string[i];
if (charCount[char]) {
charCount[char]++;
} else {
charCount[char] = 1;
}
}
for (let j = 0; j < string.length; j++) {
let charChecking = string[j];
if (charCount[charChecking] == 1) {
return string.charAt(j);
}
}
return "No non-repeating characters."
}
console.log(`Returns first non-repeating character: ${firstNonRepeat("ararta")}`);
/***********************************/
//removes all characters in a specified string from another string
//O(n*m) - likely O(n) because m<n
const removeChars = (string, remove) => {
let newString = "";
for (let i = 0; i < string.length; i++) {
let deleteMe = false;
for (let j = 0; j < remove.length; j++) {
if (remove.charAt(j).toLowerCase() == string.charAt(i).toLowerCase()) {
deleteMe = true;
}
}
if (!deleteMe) {
newString = newString.concat(string[i]);
};
}
return newString;
}
console.log(`Removes all characters in a specified string from another string: ${removeChars("yaywowdogewow", "wow")}`);
//more efficient way O(n) This uses a hash table!
const otherRemoveChars = (input, remove) => {
let r = {};
let newString = '';
//r[c] is creating a property c (which is the characters of remove) that holds a boolean.
remove.split('').forEach(c => r[c] = true);
//now when you go through input you'll be able to check quickly if r has a property of that character that has a boolean. If it does, then you don't copy it.
input.split('').forEach((c) => {
if (typeof r[c] === 'undefined') {
newString += c;
}
});
return newString;
}
console.log(`Removes all characters in a specified string from another string (more efficient): ${otherRemoveChars("yaywowdogewow", "wow")}`);
//chris' soooooper efficient way
const otherRemoveChars2 = (input, remove) => {
let r = {};
remove.split('').forEach(c => r[c] = true);
return input.split('')
.filter(c => typeof r[c] === 'undefined')
.reduce((t, c) => {
return t += c
}, '');
}
console.log(`Removes all characters in a specified string from another string (Chris' way): ${otherRemoveChars2("yaywowdogewow", "wow")}`);
/***********************************/
//reverse the words!
const reverseEasy = (string) => {
let stringArr = string.split(" ");
let reverseStr = stringArr.reverse().join(" ");
return reverseStr;
}
console.log(`Reverse dem words (easy way): ${reverseEasy("i am ameiiizing")}`)
const reverseHard = (string) => {
let reverseArr = [];
let wordLength = 0;
for (let i = string.length; i >= 0; --i) {
if (string[i] == " ") {
reverseArr.push(string.substr(i + 1, wordLength));
wordLength = 0;
} else if (i == 0) {
reverseArr.push(string.substr(i, wordLength + 1));
} else {
wordLength++;
}
}
return reverseArr.join(" ");
}
console.log(`Reverse dem words (harder way): ${reverseHard("i am ameiiizing")}`)
/***********************************/
//turn a string of numbers to an int
const stringToInt = (string) => {
let newInt = 0;
let digitCount = 0;
let numberIsNeg = false;
let i = 0;
if (string.charAt(i) == "-") {
numberIsNeg = true;
i = 1;
}
//- "0" is suppose to make the string a number, but in javascript it isn't really necessary
for (i; i < string.length; i++) {
let numberInt = (string.charAt(i) - "0") * Math.pow(10, (string.length - i - 1));
newInt = newInt + numberInt;
}
if (numberIsNeg) {
newInt *= -1;
}
return newInt;
}
console.log(`String to int: ${typeof stringToInt("1234")}`)
/***********************************/
//turn an int to a string of numbers
const intToString = (int) => {
let newStr = "";
let digitCount = 0;
let numberIsNeg = false;
let temp = [];
let i = 0;
if (int < 0) {
numberIsNeg = true;
int *= -1;
}
if (int == 0) {
return "0";
}
while (int != 0) {
temp[i] = (Math.floor(int % 10));
int = (Math.floor(int / 10));
i++
}
for (i; i > 0; i--) {
newStr += temp[i - 1];
}
if (numberIsNeg) {
newStr = "-" + newStr;
}
return newStr;
}
console.log(`Int to String: ${typeof intToString("1234")}`)
/***********************************/
/*
Given two strings s and t, write a function to determine if t is an anagram of s.
For example,
s = "anagram", t = "nagaram", return true.
s = "rat", t = "car", return false.
Note:
You may assume the string contains only lowercase alphabets.
*/
let isAnagram = (s, t) => {
let S = s.split("");
let T = t.split("");
let count = S.length;
let hash = {}, anagram = true;
S.forEach((x) => {
if (hash[x]) {
hash[x]++;
} else {
hash[x] = 1;
};
});
T.forEach((x) => {
if (hash[x]) {
if (hash[x] != 0) {
count--;
hash[x]--;
} else {
return anagram = false;
}
} else {
return anagram = false;
};
});
if (count != 0) {
return anagram = false;
} else {
return anagram;
};
};
let s = "resistance";
let t = "ancestries";
let t1 = "ances";
console.log(`Returns true if two strings ("resistance","ancestries") are anagrams: ${isAnagram(s, t)}`);
console.log(`Returns true if two strings ("resistance","ances") are anagrams: ${isAnagram(s, t1)}`);
/***********************************/
//Reverse integer without turning it into a string.
let reverse = (x) => {
let neg = false, i = 0, newNum = 0;
if (x < 0) {
neg = true;
x = x * -1;
};
let num = x;
while (num >= 10) {
num = num / 10;
i++;
};
while (i >= 0) {
newNum = newNum + ((x % 10) * Math.pow(10, i));
i--;
x = Math.floor(x / 10);
};
if (neg) {
newNum = newNum * -1;
};
return newNum;
};
console.log(`Reverse integers: ${reverse(-123456)}`);