Skip to content

Commit

Permalink
solution and test for llipio#32
Browse files Browse the repository at this point in the history
  • Loading branch information
rkalra247 committed Jun 7, 2017
1 parent c8a0e5e commit e9f6b25
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
23 changes: 23 additions & 0 deletions solutions/32.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//Rahul Kalra
//Finding Singleton

const solution = (array) =>{
let data = {};
let newArray = [];
for(let i = 0; i < array.length; i++){
if(!(data[array[i]])){
data[array[i]] = 1;
}
else{
data[array[i]]++;
}
}
for(let key in data){
if(data[key] === 1){
newArray.push(Number(key));
}
}
return newArray;
};

module.exports = {solution};
8 changes: 8 additions & 0 deletions test/32.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const expect = require('chai').expect;
let solution = require('../solutions/32').solution;

describe('Finding singleton in an array', () =>{
it.only('should return singleton in an array', () =>{
expect(solution([1,2,3,3,1,4])).to.eql([2, 4]);
});
});

0 comments on commit e9f6b25

Please sign in to comment.