pretty pleased with this Python for the longest word with no repeated letters: sorted([w for w in words if len(set(w))==len(w)],key=len)[-1]
pretty pleased with this Python for the longest word with no repeated letters: sorted([w for w in words if len(set(w))==len(w)],key=len)[-1]