Sherlock and Anagrams

  • + 0 comments

    My Solution: - Define an array 'subarrs' to store all words(subarrays) of a given size - Compare alll of them and check if they are anagrams Repeat this step for all possible subarrays sizes

    PYTHON `