forked from llipio/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]); | ||
}); | ||
}); |