Write a function that extracts unique elements from two lists?
Login to Submit
Input: ["cat", "book"] ["cat", "dog"] Output: [ "book", "cat", "dog"] Note: make sure the elements are sorted chronologically.