From 3efca1a12f8ad088700b47ca9b01359dceb11cc1 Mon Sep 17 00:00:00 2001 From: Emily Dela Cruz Date: Wed, 19 Aug 2020 18:07:44 -0400 Subject: [PATCH] Fix typo --- 20-08-18/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20-08-18/README.md b/20-08-18/README.md index aa9e7f7..4ece41e 100644 --- a/20-08-18/README.md +++ b/20-08-18/README.md @@ -1,6 +1,6 @@ # The Task -Write a solution to get all non-unique values (i.e.: duplicate/more than one occurrence) in an array +Write a solution to get all non-unique values (i.e.: duplicate/more than one occurrence) in an array. For example, if given the array ['water', 'juice', 'coffee', 'coffee', 'water', 'water', 'milk'], your solution should return ['water', 'coffee'] Use JS.