-
Notifications
You must be signed in to change notification settings - Fork 1
/
format.js
58 lines (48 loc) · 1.49 KB
/
format.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
import fs from "fs";
const students = JSON.parse(fs.readFileSync("./data.json"));
const parseField = (str, field) =>
Number(str.split(field)[1]?.split(";")[0].trim());
const parsed = students
.map((student) => ({
...student,
total: parseField(student.mark, "Tổng điểm XT:"),
literature: parseField(student.mark, "Ngữ văn:"),
math: parseField(student.mark, "Toán:"),
english: parseField(student.mark, "Ngoại ngữ:"),
professional1: parseField(student.mark, "Chuyên 1:"),
professional2: parseField(student.mark, "Chuyên 2:"),
}))
.filter((i) => i.total);
console.log("Tổng số học sinh", students.length);
console.log(
"Số người thi chuyên",
parsed.filter((i) => i.professional1 || i.professional2).length
);
console.log(
"Số người điểm văn >= 9",
parsed.filter((i) => i.literature >= 9).length
);
console.log(
"Số người điểm văn = 9.5",
parsed.filter((i) => i.literature === 9.5).length
);
console.log(
"Số người điểm văn >= 8",
parsed.filter((i) => i.literature >= 8).length
);
console.log(
"Số người điểm toán = 10",
parsed.filter((i) => i.math === 10).length
);
console.log(
"Số người điểm tiếng anh = 10",
parsed.filter((i) => i.english === 10).length
);
console.log(
"Số người điểm chuyên 1 = 10",
parsed.filter((i) => i.professional1 === 10).length
);
console.log(
"Số người điểm chuyên 2 = 10",
parsed.filter((i) => i.professional2 === 10).length
);