-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
printer-errors.js
82 lines (70 loc) · 1.84 KB
/
printer-errors.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
function printerError(s) {
// a place to store the number of errors
let errors = 0;
// iterate over the string
for (let i = 0; i < s.length; i++) {
const currentLetter = s[i];
// if the current letter is not within the range a-m
if (currentLetter < 'a' || currentLetter > 'm') {
// increment the number of errors
errors++;
}
}
return `${errors}/${s.length}`;
}
function printerError(s) {
let errors = 0;
for (let i = 0; i < s.length; i++) {
const currentLetter = s[i];
if (!currentLetter.match(/[a-m]/)) {
errors++;
}
}
return `${errors}/${s.length}`;
}
function printerError(s) {
const errors = s.match(/[^a-m]/g);
return `${errors.length}/${s.length}`;
}
function printerError(s) {
return `${s.match(/[^a-m]/g).length}/${s.length}`;
}
function printerError(s) {
const goods = s.match(/[a-m]/g);
return `${s.length-goods.length}/${s.length}`;
}
function printerError(s) {
let errors = s.split('').reduce((errors, currentLetter) => {
if (currentLetter < 'a' || currentLetter > 'm') {
errors++;
}
return errors;
}, 0);
return `${errors}/${s.length}`;
}
function printerError(s) {
return s.split('').reduce((errors, currentLetter) => {
if (currentLetter < 'a' || currentLetter > 'm') {
errors++;
}
return errors;
}, 0) + '/' + s.length;
}
function printerError(s) {
return s.split('').reduce((errors, currentLetter) => {
if (!currentLetter.match(/[a-m]/)) {
errors++;
}
return errors;
}, 0) + '/' + s.length;
}
function printerError(s) {
return Array.prototype.reduce.call(s, (errors, currentLetter) => {
if (!currentLetter.match(/[a-m]/)) {
errors++;
}
return errors;
}, 0) + '/' + s.length;
}
const s = 'aaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbmmmmmmmmmmmmmmmmmmmxyz';
console.log(printerError(s), '3/56');