Amos94 / -CodeWars-Python-Where-my-anagrams-at-

https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[CodeWars][Python] Where my anagrams at

https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python

What is an anagram? Well, two words are anagrams of each other if they both contain the same letters. For example:

'abba' & 'baab' == true

'abba' & 'bbaa' == true

'abba' & 'abbba' == false Write a function that will find all the anagrams of a word from a list. You will be given two inputs a word and an array with words. You should return an array of all the anagrams or an empty array if there are none. For example:

anagrams('abba', ['aabb', 'abcd', 'bbaa', 'dada']) => ['aabb', 'bbaa']

anagrams('racer', ['crazer', 'carer', 'racar', 'caers', 'racer']) => ['carer', 'racer']

anagrams('laser', ['lazing', 'lazy', 'lacer']) => []

About

https://www.codewars.com/kata/523a86aa4230ebb5420001e1/train/python

License:Apache License 2.0


Languages

Language:Python 100.0%