Question

Write a function that extracts unique elements from two lists?

Login to Submit

Examples

Input:  ["cat", "book"]  ["cat", "dog"]
Output: [ "book", "cat", "dog"]

Note: make sure the elements are sorted chronologically.