Skip to content

Commit

Permalink
Merge pull request #88 from rkalra247/problem32
Browse files Browse the repository at this point in the history
solution and test for #32
  • Loading branch information
dsope05 authored Jun 13, 2017
2 parents 0039087 + e9f6b25 commit 6c473d5
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 6c473d5

Please sign in to comment.