-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
fe8ccb4
commit 5b59cec
Showing
1 changed file
with
23 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 @@ | ||
# [Distinct](https://codility.com/programmers/lessons/6-sorting/) | ||
Compute number of distinct values in an array. | ||
|
||
### Solution (JavaScript) | ||
If we sort the array then we are simply able to step through it and keep a counter of every time a new number is encountered. | ||
|
||
__[Test Score: 100%](https://codility.com/demo/results/trainingECATBF-VJK/)__ | ||
|
||
```js | ||
function solution(A) { | ||
A.sort((a,b) => a-b) | ||
let count = 0 | ||
let previous = null | ||
A.forEach((e)=> { | ||
if (previous !== e) { | ||
count++ | ||
previous = e | ||
} | ||
}) | ||
|
||
return count | ||
} | ||
``` |