summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a260.py
blob: cc6721abbc1bc4794c4ab5bcd58e6da260c656bf (plain)
1
2
3
4
from collections import Counter 
def anagram_lambda(texts,str):
  result = list(filter(lambda x: (Counter(str) == Counter(x)), texts)) 
  return result