-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrials.js
234 lines (189 loc) · 4.06 KB
/
trials.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
"use strict";
// Print each item in the given array.
//
// Ex.:
// > outputAllItems([1, 'hello', true]);
// 1
// hello
// true
function outputAllItems(items) {
for (const item of items) {
console.log(item);
}
}
// Given an array of numbers, return an array of all even numbers.
//
// Ex.:
// > getAllEvens([7, 8, 10, 1, 2, 2]);
// [8, 2, 2]
function getAllEvens(nums) {
const evenNums = [];
for (const num of nums) {
if (num % 2 === 0) {
evenNums.push(num);
}
}
return evenNums;
}
// Given an array, return all elements at odd numbered indices.
//
// Ex.:
// > getOddIndices([1, 'hello', true, 500]);
// ['hello', 500]
function getOddIndices(items) {
const result = [];
for (const idx in items) {
if (idx % 2 !== 0) {
result.push(items[idx]);
}
}
return result;
}
// Given an array, output a numbered list.
//
// Ex.:
// > printAsNumberedList([1, 'hello', true]);
// 1. 1
// 2. hello
// 3. true
function printAsNumberedList(items) {
let i = 1;
for (const item of items) {
console.log(`${i}. ${item}`);
i += 1;
}
}
// Return an array of numbers in a certain range.
//
// Ex.:
// > getRange(0, 5);
// [0, 1, 2, 3, 4]
//
// > getRange(1, 3);
// [1, 2]
function getRange(start, stop) {
const nums = [];
for (let num = start; num < stop; num += 1) {
nums.push(num);
}
}
// Given a string, return a string where vowels are replaced with '*'.
//
// Ex.:
// > censorVowels('hello world');
// 'h*ll* w*rld'
function censorVowels(word) {
const chars = [];
for (const letter of word) {
if ('aeiou'.includes(letter)) {
chars.push('*');
}
chars.push(letter);
}
return chars.join('');
}
// Given a string in snake case, return a string in upper camel case.
//
// Ex.:
// > snakeToCamel('hello_world');
// 'HelloWorld'
function snakeToCamel(string) {
const camelCase = [];
for (const word of string.split('_')) {
camelCase.push(`${word[0].toUpperCase()}${word.slice(1)}`);
}
return camelCase.join('');
}
// Return the length of the longest word in the given array of words.
//
// Ex.:
// > longestWordLength(['hello', 'world']);
// 5
//
// > longestWordLength(['jellyfish', 'zebra']);
// 9
function longestWordLength(words) {
let longest = words[0].length;
for (const word of words) {
if (longest < word.length) {
longest = word.length;
}
}
return longest;
}
// Truncate repeating characters into one character.
//
// Ex.:
// > truncate('aaaabbbbcccca');
// 'abca'
//
// > truncate('hi***!!!! wooow');
// 'hi*! wow'
function truncate(string) {
const result = [];
for (const char of string) {
if (result.length === 0 || char !== result[result.length - 1]) {
result.push(char);
}
}
return result.join('');
}
// Return true if all parentheses in a given string are balanced.
//
// Ex.:
// > hasBalancedParens('()');
// true
//
// > hasBalancedParens('((This) (is) (good))');
// true
//
// > hasBalancedParens('(Oh no!)(');
// false
function hasBalancedParens(string) {
let parens = 0;
for (const char of string) {
if (char === '(') {
parens += 1;
} else if (char === ')') {
parens -= 1;
if (parens < 0) {
return false;
}
}
}
return parens < 0;
}
// Return a compressed version of the given string.
//
// Ex.:
// > compress('aabbaabb');
// 'a2b2a2b2'
//
// If a character appears once, it shouldn't be followed by a number:
// > compress('abc');
// 'abc'
//
// The function should handle all types of characters:
// > compress('Hello, world! Cows go moooo...');
// 'Hel2o, world! Cows go mo4.3'
function compress(string) {
const compressed = [];
let currChar = '';
let charCount = 0;
for (const char of string) {
if (char !== currChar) {
compressed.push(currChar);
if (charCount > 1) {
compressed.push(charCount.toString());
}
currChar = char;
charCount = 0;
}
charCount += 1;
}
compressed.push(currChar);
if (charCount > 1) {
compressed.push(charCount.toString());
}
return compressed.join('');
}