Updated description for Sorted Union bonfire for clarity.

This commit is contained in:
A. Drake
2015-02-24 13:10:34 -05:00
parent 93c3a8210f
commit d446dbbd53

View File

@ -311,6 +311,7 @@
"difficulty": "2.07",
"description": [
"Write a function that takes two or more arrays and returns a new array of unique values in the order of the original provided arrays.",
"In other words, all values present from all arrays should be included in their original order, but with no duplicates in the final array."
"The unique numbers should be sorted by their original order, but the final array should not be sorted in numerical order.",
"Check the assertion tests for examples."
],