Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
I like it!
I got this Algo during a tech screening can anyone eleborate on how to solve!
//input
let array = [
{ skill: 'css', user: 'Bill' },
{ skill: 'javascript', user: 'Chad' },
{ skill: 'javascript', user: 'Bill' },
{ skill: 'css', user: 'Sue' },
{ skill: 'javascript', user: 'Sue' },
{ skill: 'html', user: 'Sue' }
];
Expected Output
var newArray = [
{ skill: 'css', users: ['Bill', 'Sue'], count: 2 },
{ skill: 'javascript', users: ['Chad', 'Bill', 'Sue'], count: 3 },
{ skill: 'html', users: ['Sue'], count: 1 }
]