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!
Im new to code wars. Ive recently successfully attempted some kata challenges. For one i submitted it and realised i didnt clean up my code and i tried to refactor the solution but it made a copy. I now have three solutions to the same kata. How do i remove a solution? Thanks in advance
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 }
]