Given a list of strings, identify and remove duplicate strings.
Implement def remove_duplicates(strings): and return a new list containing one copy of each string. Preserve the order of first occurrences and treat strings as case-sensitive, so "Virtusa" and "virtusa" are different values.
def remove_duplicates(strings):