HackerRank Day 4: Count Objects 10 days of javascript solution YASH PAL, 31 July 2024 In this HackerRank Day 4: Count Objects 10 days of javascript problem you need to complete the function in the editor. It has one parameter: an array, a, of objects. Each object in the array has two integer properties denoted by x and y. The function must return a count of all such objects o in array a that satisfy o*x == o*y. HackerRank Day 4: Count Objects 10 days of javascript problem solution. '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(string => { return string.trim(); }); main(); }); function readLine() { return inputString[currentLine++]; } function getCount(objects) { return objects.filter(function(o){return o.x==o.y}).length } function main() { const n = +(readLine()); let objects = []; for (let i = 0; i < n; i++) { const [a, b] = readLine().split(' '); objects.push({x: +(a), y: +(b)}); } console.log(getCount(objects)); } 10 day of javascript coding problems