[Codewars #10] Find the unique number (6kyu)
[Codewars #10] Find the unique number (6kyu) 문제 풀이
Instructions
There is an array with some numbers. All numbers are equal except for one. Try to find it!
1
2
findUniq([ 1, 1, 1, 2, 1, 1 ]) === 2
findUniq([ 0, 0, 0.55, 0, 0 ]) === 0.55
It’s gua...