summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a263.py
blob: 0f71a0cbc85205c2a3e494e080be17ac2c0a1c88 (plain)
1
2
3
def palindrome_lambda(texts):
  result = list(filter(lambda x: (x == "".join(reversed(x))), texts))
  return result