Write a function that returns True if all the strings in a list can be formed by using only the characters from the longest string.
can_form(["mast", "manifest", "met", "fan"]) ➞ True
can_form(["may", "master", "same", "reams"]) ➞ False
can_form(["may", "same", "reams", "mastery"]) ➞ True
There will only be one unique longest string.