the goal of this coding exam is to quickly get off you the ground with the array method every().
input
output
input1
[{'name': 'Blake Hodges', 'points':[76, 98, 88, 84]}
output1
['Blake Hodges]
"use strict";
process.stdin.resume();
process.stdin.setEncoding("utf-8");
let inputString = "";
let currentLine = 0;
process.stdin.on("data", (inputStdin) => {
inputString += inputStdin;
});
process.stdin.on("end", (_) => {
inputString = inputString.trim().split("\n").map((str) => str.trim());
main();
});
function readLine() {
return inputString[currentLine++];
}
function main() {
const candidatesList = JSON.parse(readLine().replace(/'/g, '"'));
// Write your code here
}
"use strict";
process.stdin.resume();
process.stdin.setEncoding("utf-8");
let inputString = "";
let currentLine = 0;
process.stdin.on("data", (inputStdin) => {
inputString += inputStdin;
});
process.stdin.on("end", (_) => {
inputString = inputString.trim().split("\n").map((str) => str.trim());
main();
});
function readLine() {
return inputString[currentLine++];
}
function main() {
const candidatesList = JSON.parse(readLine().replace(/'/g, '"'));
// Write your code here
const candidates = candidatesList.filter((candidate) => {
if (candidate.points.every((point) => point > 75)) return candidate
}).map((candidate) => candidate.name)
console.log(candidates)
return candidates
}
Comments
Leave a comment