• + 0 comments
    function getCount(objects) {
        let count = 0;
        objects.map((o)=> o.x == o.y ? count++ : count)
        return count;
    }