Commit 1b998cd
authored
Update task.md
Please check it carefully. The provided solution or the task probably isn't correct.
You have two ways:
1. Correct solution (bad way IMO):
function unique(arr: Array<string>) {
return Array.from(new Set(arr)).join(', ');
}
2. Correct task (see PR).1 parent 9708e91 commit 1b998cd
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| |||
0 commit comments