Implement a function strIntersection (str1, str2) that takes two strings as input, and returns the intersection of the two, with each letter represented at most once. The letters should be in the order they appear in the first string.
eg. strIntersection ("On hot sunny days", "There is much rain") => "n hsua"
eg. strIntersection ("On hot sunny days", "There is much rain") => "n hsua"
Comment