If I have a list of strings for example:
[\"car\", \"tree\", \"boy\", \"girl\", \"arc\"...]
What should I do in order to find anagrams in t
Sort each element then look for duplicates. There's a built-in function for sorting so you do not need to import anything